easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
53 lines (52 loc) • 1.06 kB
JavaScript
export const CSharpDark = {
/** Display name */
DisplayName: 'C# Dark',
/** Code styles */
CodeStyles: {
Keyword: {
Color: '569cd6',
},
Comment: {
Color: '56a64a',
},
Plaintext: {
Color: 'dedede',
},
Punctuation: {
Color: 'dedede',
},
String: {
Color: 'dadada',
},
Literal: {
Color: 'dadada',
},
Type: {
Color: '4ec9b0',
},
Tag: {
Color: 'd7bb7d',
},
AttributeName: {
Color: '4ec9b0',
},
AttributeValue: {
Color: '569cd6',
},
Decimal: {
Color: 'b5cea8',
},
NoCode: {
Color: '000',
BackgroundColor: 'none',
},
},
// Background color
BackgroundStyle: {
BackgroundColor: '1e1e1e',
},
// Line number background colors
LineNumberStyle: {
Color: 'e0e0e0',
},
};