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 Base16Windows10: ITheme = {
DisplayName: 'Base16 Windows 10',
CodeStyles: {
Keyword: {
Color: '13a10e',
FontWeight: 'bold',
},
Comment: {
Color: '61d6d6',
},
Plaintext: {
Color: 'cccccc',
},
Punctuation: {
Color: 'cccccc',
},
String: {
Color: '13a10e',
},
Literal: {
Color: '13a10e',
FontWeight: 'bold',
},
Type: {
Color: 'b4009e',
},
Tag: {
Color: 'e74856',
},
AttributeName: {
Color: 'b4009e',
},
Decimal: {
Color: 'c19c00',
},
NoCode: {
Color: 'e74856',
},
},
BackgroundStyle: {
BackgroundColor: '535353',
},
LineNumberStyle: {
Color: 'cccccc',
BackgroundColor: '535353',
},
};