easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
52 lines (50 loc) • 847 B
text/typescript
import { ITheme } from './ITheme';
export const Xt256: ITheme = {
DisplayName: 'Xt256',
CodeStyles: {
Keyword: {
Color: 'fff000',
},
Comment: {
Color: '00ffff',
},
Plaintext: {
Color: 'eaeaea',
},
Punctuation: {
Color: 'eaeaea',
},
String: {
Color: '00ff00',
},
Literal: {
Color: 'fff',
FontWeight: 'bolder',
},
Type: {
Color: 'ff00ff',
FontWeight: 'bold',
},
Tag: {
Color: '000fff',
FontWeight: 'bold',
},
AttributeName: {
Color: 'ff00ff',
},
Decimal: {
Color: 'ff0000',
FontWeight: 'bolder',
},
NoCode: {
Color: 'eaeaea',
},
},
BackgroundStyle: {
BackgroundColor: '000',
},
LineNumberStyle: {
Color: 'eaeaea',
BackgroundColor: '000',
},
};