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 Base16Darktooth: ITheme = {
DisplayName: 'Base16 Darktooth',
CodeStyles: {
Keyword: {
Color: 'a87322',
FontWeight: 'bold',
},
Comment: {
Color: '8ba59b',
},
Plaintext: {
Color: 'a89984',
},
Punctuation: {
Color: 'a89984',
},
String: {
Color: 'a87322',
},
Literal: {
Color: 'a87322',
FontWeight: 'bold',
},
Type: {
Color: '8f4673',
},
Tag: {
Color: 'fb543f',
},
AttributeName: {
Color: '8f4673',
},
Decimal: {
Color: 'fe8625',
},
NoCode: {
Color: 'fb543f',
},
},
BackgroundStyle: {
BackgroundColor: '504945',
},
LineNumberStyle: {
Color: 'a89984',
BackgroundColor: '504945',
},
};