easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
49 lines (47 loc) • 781 B
text/typescript
import { ITheme } from './ITheme';
export const Pojoaque: ITheme = {
DisplayName: 'Pojoaque',
CodeStyles: {
Keyword: {
Color: '468966',
},
Comment: {
Color: '586e75',
FontStyle: 'italic',
},
Plaintext: {
Color: 'dccf8f',
},
Punctuation: {
Color: 'dccf8f',
},
String: {
Color: 'cb4b16',
},
Literal: {
Color: 'cb4b16',
},
Type: {
Color: 'b58900',
},
Tag: {
Color: 'b58900',
},
AttributeName: {
Color: 'b89859',
},
Decimal: {
Color: '468966',
},
NoCode: {
Color: 'dc322f',
},
},
BackgroundStyle: {
BackgroundColor: '181914',
},
LineNumberStyle: {
Color: 'dccf8f',
BackgroundColor: '181914',
},
};