easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
49 lines (47 loc) • 781 B
text/typescript
import { ITheme } from './ITheme';
export const Dark: ITheme = {
DisplayName: 'Dark',
CodeStyles: {
Keyword: {
Color: 'd88',
FontWeight: 'bold',
},
Comment: {
Color: '979797',
},
Plaintext: {
Color: 'ddd',
},
Punctuation: {
Color: 'ddd',
},
String: {
Color: 'd88',
},
Literal: {
Color: '979797',
FontWeight: 'bold',
},
Type: {
Color: 'd88',
FontWeight: 'bold',
},
Tag: {
Color: 'd88',
FontWeight: 'bold',
},
AttributeName: {
Color: 'd88',
},
NoCode: {
Color: '979797',
},
},
BackgroundStyle: {
BackgroundColor: '303030',
},
LineNumberStyle: {
Color: 'ddd',
BackgroundColor: '303030',
},
};