easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
48 lines (46 loc) • 740 B
text/typescript
import { ITheme } from './ITheme';
export const ColorBrewer: ITheme = {
DisplayName: 'Color Brewer',
CodeStyles: {
Keyword: {
Color: '3182bd',
},
Comment: {
Color: '636363',
},
Plaintext: {
Color: '000',
},
Punctuation: {
Color: '000',
},
String: {
Color: '756bb1',
},
Literal: {
Color: '88f',
},
Type: {
Color: '3182bd',
},
Tag: {
Color: '3182bd',
},
AttributeName: {
Color: 'e6550d',
},
Decimal: {
Color: '31a354',
},
NoCode: {
Color: '88f',
},
},
BackgroundStyle: {
BackgroundColor: 'fff',
},
LineNumberStyle: {
Color: '000',
BackgroundColor: 'fff',
},
};