easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
63 lines (61 loc) • 1.15 kB
text/typescript
import { ITheme } from './ITheme';
export const Idea: ITheme = {
DisplayName: 'Idea',
CodeStyles: {
Keyword: {
Color: '000080',
FontWeight: 'bold',
},
Comment: {
Color: '808080',
FontStyle: 'italic',
},
Plaintext: {
Color: '000',
},
Punctuation: {
Color: '000',
},
String: {
Color: '000',
FontWeight: 'bold',
BackgroundColor: 'baeeba',
FontStyle: 'italic',
},
Literal: {
Color: '660e7a',
FontWeight: 'normal',
BackgroundColor: 'd0eded',
FontStyle: 'italic',
},
Type: {
Color: '000080',
FontWeight: 'bold',
},
Tag: {
BackgroundColor: 'efefef',
Color: '000080',
FontWeight: 'bold',
},
AttributeName: {
Color: '0000ff',
FontWeight: 'bold',
},
Decimal: {
Color: '0000ff',
FontWeight: 'normal',
},
NoCode: {
Color: '000',
FontWeight: 'normal',
BackgroundColor: 'ffc8bd',
},
},
BackgroundStyle: {
BackgroundColor: 'fff',
},
LineNumberStyle: {
Color: '000',
BackgroundColor: 'fff',
},
};