easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 811 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Nova: ITheme = {
DisplayName: 'Base16 Nova',
CodeStyles: {
Keyword: {
Color: 'f2c38f',
FontWeight: 'bold',
},
Comment: {
Color: 'f2c38f',
},
Plaintext: {
Color: 'c5d4dd',
},
Punctuation: {
Color: 'c5d4dd',
},
String: {
Color: 'f2c38f',
},
Literal: {
Color: 'f2c38f',
FontWeight: 'bold',
},
Type: {
Color: '9a93e1',
},
Tag: {
Color: '83afe5',
},
AttributeName: {
Color: '9a93e1',
},
Decimal: {
Color: '7fc1ca',
},
NoCode: {
Color: '83afe5',
},
},
BackgroundStyle: {
BackgroundColor: '6a7d89',
},
LineNumberStyle: {
Color: 'c5d4dd',
BackgroundColor: '6a7d89',
},
};