easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 830 B
text/typescript
import { ITheme } from './ITheme';
export const Base16MaterialVivid: ITheme = {
DisplayName: 'Base16 Material Vivid',
CodeStyles: {
Keyword: {
Color: '8d6e63',
FontWeight: 'bold',
},
Comment: {
Color: '00bcd4',
},
Plaintext: {
Color: '80868b',
},
Punctuation: {
Color: '80868b',
},
String: {
Color: '8d6e63',
},
Literal: {
Color: '8d6e63',
FontWeight: 'bold',
},
Type: {
Color: '673ab7',
},
Tag: {
Color: 'f44336',
},
AttributeName: {
Color: '673ab7',
},
Decimal: {
Color: 'ff9800',
},
NoCode: {
Color: 'f44336',
},
},
BackgroundStyle: {
BackgroundColor: '323639',
},
LineNumberStyle: {
Color: '80868b',
BackgroundColor: '323639',
},
};