easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 822 B
text/typescript
import { ITheme } from './ITheme';
export const Base16WindowsNT: ITheme = {
DisplayName: 'Base16 Windows NT',
CodeStyles: {
Keyword: {
Color: '008000',
FontWeight: 'bold',
},
Comment: {
Color: '00ffff',
},
Plaintext: {
Color: 'c0c0c0',
},
Punctuation: {
Color: 'c0c0c0',
},
String: {
Color: '008000',
},
Literal: {
Color: '008000',
FontWeight: 'bold',
},
Type: {
Color: 'ff00ff',
},
Tag: {
Color: 'ff0000',
},
AttributeName: {
Color: 'ff00ff',
},
Decimal: {
Color: '808000',
},
NoCode: {
Color: 'ff0000',
},
},
BackgroundStyle: {
BackgroundColor: '555555',
},
LineNumberStyle: {
Color: 'c0c0c0',
BackgroundColor: '555555',
},
};