easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 843 B
text/typescript
import { ITheme } from './ITheme';
export const Base16WindowsHighContrast: ITheme = {
DisplayName: 'Base16 Windows High Contrast',
CodeStyles: {
Keyword: {
Color: '008000',
FontWeight: 'bold',
},
Comment: {
Color: '54fcfc',
},
Plaintext: {
Color: 'c0c0c0',
},
Punctuation: {
Color: 'c0c0c0',
},
String: {
Color: '008000',
},
Literal: {
Color: '008000',
FontWeight: 'bold',
},
Type: {
Color: 'fc54fc',
},
Tag: {
Color: 'fc5454',
},
AttributeName: {
Color: 'fc54fc',
},
Decimal: {
Color: '808000',
},
NoCode: {
Color: 'fc5454',
},
},
BackgroundStyle: {
BackgroundColor: '383838',
},
LineNumberStyle: {
Color: 'c0c0c0',
BackgroundColor: '383838',
},
};