easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 817 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Zenburn: ITheme = {
DisplayName: 'Base16 Zenburn',
CodeStyles: {
Keyword: {
Color: '000000',
FontWeight: 'bold',
},
Comment: {
Color: '93e0e3',
},
Plaintext: {
Color: 'dcdccc',
},
Punctuation: {
Color: 'dcdccc',
},
String: {
Color: '000000',
},
Literal: {
Color: '000000',
FontWeight: 'bold',
},
Type: {
Color: 'dc8cc3',
},
Tag: {
Color: 'dca3a3',
},
AttributeName: {
Color: 'dc8cc3',
},
Decimal: {
Color: 'dfaf8f',
},
NoCode: {
Color: 'dca3a3',
},
},
BackgroundStyle: {
BackgroundColor: '606060',
},
LineNumberStyle: {
Color: 'dcdccc',
BackgroundColor: '606060',
},
};