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 Base16TomorrowNight: ITheme = {
DisplayName: 'Base16 Tomorrow Night',
CodeStyles: {
Keyword: {
Color: 'a3685a',
FontWeight: 'bold',
},
Comment: {
Color: '66cccc',
},
Plaintext: {
Color: 'cccccc',
},
Punctuation: {
Color: 'cccccc',
},
String: {
Color: 'a3685a',
},
Literal: {
Color: 'a3685a',
FontWeight: 'bold',
},
Type: {
Color: 'cc99cc',
},
Tag: {
Color: 'f2777a',
},
AttributeName: {
Color: 'cc99cc',
},
Decimal: {
Color: 'f99157',
},
NoCode: {
Color: 'f2777a',
},
},
BackgroundStyle: {
BackgroundColor: '515151',
},
LineNumberStyle: {
Color: 'cccccc',
BackgroundColor: '515151',
},
};