easy-code-formatter-styles
Version:
a package which contains the styling details for easy code formatter office app.
55 lines (54 loc) • 1.11 kB
JavaScript
export const A11YDark = {
/** Display name */
DisplayName: 'A11YDark',
/** Code styles */
CodeStyles: {
Keyword: {
Color: 'dcc6e0',
},
Comment: {
Color: 'd4d0ab',
},
Plaintext: {
Color: 'fff',
},
Punctuation: {
Color: 'fff',
},
String: {
Color: 'abe338',
},
Literal: {
Color: 'f5ab35',
},
Type: {
Color: '00e0e0',
},
Tag: {
Color: '00e0e0',
},
AttributeName: {
Color: 'ffd700',
FontWeight: 'bold',
},
AttributeValue: {
Color: 'abe338',
},
Decimal: {
Color: 'f5ab35',
},
NoCode: {
Color: '000',
BackgroundColor: 'none',
},
},
// Background color
BackgroundStyle: {
BackgroundColor: '2b2b2b',
},
// Line number background colors
LineNumberStyle: {
Color: 'fff',
Background: 'none',
},
};