easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 815 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Nebula: ITheme = {
DisplayName: 'Base16 Nebula',
CodeStyles: {
Keyword: {
Color: '8c70a7',
FontWeight: 'bold',
},
Comment: {
Color: '226f68',
},
Plaintext: {
Color: 'a4a6a9',
},
Punctuation: {
Color: 'a4a6a9',
},
String: {
Color: '8c70a7',
},
Literal: {
Color: '8c70a7',
FontWeight: 'bold',
},
Type: {
Color: '716cae',
},
Tag: {
Color: '777abc',
},
AttributeName: {
Color: '716cae',
},
Decimal: {
Color: '94929e',
},
NoCode: {
Color: '777abc',
},
},
BackgroundStyle: {
BackgroundColor: '5a8380',
},
LineNumberStyle: {
Color: 'a4a6a9',
BackgroundColor: '5a8380',
},
};