easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
37 lines (36 loc) • 733 B
JavaScript
export const DefaultGray = {
/** Display name */
DisplayName: 'Default (with Gray background)',
/** Code styles */
CodeStyles: {
Keyword: {
Color: '008',
},
Comment: {
Color: '800',
},
Plaintext: {
Color: '000',
},
Punctuation: {
Color: '660',
},
String: {
Color: '080',
},
Literal: {
Color: '066',
},
Type: {
Color: '606',
},
},
// Background color
BackgroundStyle: {
BackgroundColor: 'ececec',
},
// Line number background colors
LineNumberStyle: {
Background: 'none',
},
};