easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 821 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Sagelight: ITheme = {
DisplayName: 'Base16 Sagelight',
CodeStyles: {
Keyword: {
Color: 'd2b2a0',
FontWeight: 'bold',
},
Comment: {
Color: 'a2d6f5',
},
Plaintext: {
Color: '383838',
},
Punctuation: {
Color: '383838',
},
String: {
Color: 'd2b2a0',
},
Literal: {
Color: 'd2b2a0',
FontWeight: 'bold',
},
Type: {
Color: 'c8a0d2',
},
Tag: {
Color: 'fa8480',
},
AttributeName: {
Color: 'c8a0d2',
},
Decimal: {
Color: 'ffaa61',
},
NoCode: {
Color: 'fa8480',
},
},
BackgroundStyle: {
BackgroundColor: 'd8d8d8',
},
LineNumberStyle: {
Color: '383838',
BackgroundColor: 'd8d8d8',
},
};