easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
49 lines (47 loc) • 792 B
text/typescript
import { ITheme } from './ITheme';
export const QtcreatorDark: ITheme = {
DisplayName: 'Qtcreator Dark',
CodeStyles: {
Keyword: {
Color: 'ff55ff',
},
Comment: {
Color: '55ffff',
},
Plaintext: {
Color: 'aaaaaa',
},
Punctuation: {
Color: 'aaaaaa',
},
String: {
Color: 'ff55ff',
},
Literal: {
Color: '55ffff',
},
Type: {
FontStyle: 'italic',
Color: 'ff55ff',
},
Tag: {
Color: 'aaaaaa',
},
AttributeName: {
Color: 'ff55ff',
},
Decimal: {
Color: 'ff55ff',
},
NoCode: {
Color: '55ffff',
},
},
BackgroundStyle: {
BackgroundColor: '000000',
},
LineNumberStyle: {
Color: 'aaaaaa',
BackgroundColor: '000000',
},
};