easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
55 lines (54 loc) • 1.11 kB
JavaScript
export const Desert = {
/** Display name */
DisplayName: 'Desert',
/** Code styles */
CodeStyles: {
Keyword: {
Color: 'f0e68c',
},
Comment: {
Color: '87ceeb',
},
Plaintext: {
Color: 'fff',
},
Punctuation: {
Color: 'fff',
},
String: {
Color: 'ffa0a0',
},
Literal: {
Color: 'cd5c5c',
},
Type: {
Color: '98fb98',
},
Tag: {
Color: 'f0e68c',
},
AttributeName: {
Color: 'bdb76b',
FontWeight: 'bold',
},
AttributeValue: {
Color: 'ffa0a0',
},
Decimal: {
Color: '98fb98',
},
NoCode: {
Color: '000',
BackgroundColor: 'none',
},
},
// Background color
BackgroundStyle: {
BackgroundColor: '333',
},
// Line number background colors
LineNumberStyle: {
Color: 'fff',
Background: 'none',
},
};