easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
58 lines (56 loc) • 987 B
text/typescript
import { ITheme } from './ITheme';
export const NnfxLight: ITheme = {
DisplayName: 'Nnfx Light',
CodeStyles: {
Keyword: {
Color: '808',
FontWeight: 'bold',
},
Comment: {
Color: '070',
FontStyle: 'italic',
},
Plaintext: {
Color: '000',
},
Punctuation: {
Color: '000',
},
String: {
FontWeight: 'normal',
Color: 'f40',
BackgroundColor: 'beb',
},
Literal: {
Color: '269',
FontWeight: 'bold',
FontStyle: 'italic',
},
Type: {
Color: '48b',
FontWeight: 'bold',
},
Tag: {
Color: '48b',
FontWeight: 'bold',
},
AttributeName: {
FontWeight: 'bold',
Color: '000',
},
Decimal: {
Color: '00f',
},
NoCode: {
Color: '000',
BackgroundColor: 'fbb',
},
},
BackgroundStyle: {
BackgroundColor: 'fff',
},
LineNumberStyle: {
Color: '000',
BackgroundColor: 'fff',
},
};