easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 823 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Codeschool: ITheme = {
DisplayName: 'Base16 Codeschool',
CodeStyles: {
Keyword: {
Color: 'c98344',
FontWeight: 'bold',
},
Comment: {
Color: 'b02f30',
},
Plaintext: {
Color: '9ea7a6',
},
Punctuation: {
Color: '9ea7a6',
},
String: {
Color: 'c98344',
},
Literal: {
Color: 'c98344',
FontWeight: 'bold',
},
Type: {
Color: 'c59820',
},
Tag: {
Color: '2a5491',
},
AttributeName: {
Color: 'c59820',
},
Decimal: {
Color: '43820d',
},
NoCode: {
Color: '2a5491',
},
},
BackgroundStyle: {
BackgroundColor: '2a343a',
},
LineNumberStyle: {
Color: '9ea7a6',
BackgroundColor: '2a343a',
},
};