easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
40 lines (39 loc) • 785 B
JavaScript
export const BlueHintGray = {
/** Display name */
DisplayName: 'Blue Hint Gray',
/** Code styles */
CodeStyles: {
Keyword: {
Color: '0000ff',
},
Comment: {
Color: '008000',
},
Plaintext: {
Color: '000',
},
Punctuation: {
Color: '000',
},
String: {
Color: 'a31515',
},
Literal: {
Color: '066',
},
Type: {
Color: '2b91af',
},
Tag: {
Color: '2b91af',
},
},
// Background color
BackgroundStyle: {
BackgroundColor: 'eaeaea',
},
// Line number background colors
LineNumberStyle: {
Background: 'none',
},
};