easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
48 lines (46 loc) • 747 B
text/typescript
import { ITheme } from './ITheme';
export const IrBlack: ITheme = {
DisplayName: 'Ir Black',
CodeStyles: {
Keyword: {
Color: 'ffffb6',
},
Comment: {
Color: '7c7c7c',
},
Plaintext: {
Color: 'f8f8f8',
},
Punctuation: {
Color: 'f8f8f8',
},
String: {
Color: 'c6c5fe',
},
Literal: {
Color: 'c6c5fe',
},
Type: {
Color: 'ffffb6',
},
Tag: {
Color: '96cbfe',
},
AttributeName: {
Color: 'a8ff60',
},
Decimal: {
Color: 'ff73fd',
},
NoCode: {
Color: 'ff73fd',
},
},
BackgroundStyle: {
BackgroundColor: '000',
},
LineNumberStyle: {
Color: 'f8f8f8',
BackgroundColor: '000',
},
};