easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 817 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Cupcake: ITheme = {
DisplayName: 'Base16 Cupcake',
CodeStyles: {
Keyword: {
Color: 'baa58c',
FontWeight: 'bold',
},
Comment: {
Color: '69a9a7',
},
Plaintext: {
Color: '8b8198',
},
Punctuation: {
Color: '8b8198',
},
String: {
Color: 'baa58c',
},
Literal: {
Color: 'baa58c',
FontWeight: 'bold',
},
Type: {
Color: 'bb99b4',
},
Tag: {
Color: 'd57e85',
},
AttributeName: {
Color: 'bb99b4',
},
Decimal: {
Color: 'ebb790',
},
NoCode: {
Color: 'd57e85',
},
},
BackgroundStyle: {
BackgroundColor: 'd8d5dd',
},
LineNumberStyle: {
Color: '8b8198',
BackgroundColor: 'd8d5dd',
},
};