easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
48 lines (46 loc) • 767 B
text/typescript
import { ITheme } from './ITheme';
export const MonokaiSublime: ITheme = {
DisplayName: 'Monokai Sublime',
CodeStyles: {
Keyword: {
Color: 'f92672',
},
Comment: {
Color: '75715e',
},
Plaintext: {
Color: 'f8f8f2',
},
Punctuation: {
Color: 'f8f8f2',
},
String: {
Color: 'e6db74',
},
Literal: {
Color: '75715e',
},
Type: {
Color: 'e6db74',
},
Tag: {
Color: 'f92672',
},
AttributeName: {
Color: 'e6db74',
},
Decimal: {
Color: 'ae81ff',
},
NoCode: {
Color: '75715e',
},
},
BackgroundStyle: {
BackgroundColor: '23241f',
},
LineNumberStyle: {
Color: 'f8f8f2',
BackgroundColor: '23241f',
},
};