easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
54 lines (52 loc) • 929 B
text/typescript
import { ITheme } from './ITheme';
export const IsblEditorLight: ITheme = {
DisplayName: 'Isbl Editor Light',
CodeStyles: {
Keyword: {
Color: '000000',
FontWeight: 'bold',
},
Comment: {
Color: '000000',
FontStyle: 'italic',
},
Plaintext: {
Color: '000000',
},
Punctuation: {
Color: '000000',
},
String: {
Color: '4d99bf',
},
Literal: {
Color: '4d99bf',
FontWeight: 'bold',
},
Type: {
Color: '008080',
FontWeight: 'normal',
},
Tag: {
Color: '000000',
FontWeight: 'bold',
},
AttributeName: {
Color: '5e1700',
FontWeight: 'bold',
},
Decimal: {
Color: '000000',
},
NoCode: {
Color: '000000',
},
},
BackgroundStyle: {
BackgroundColor: 'ffffff',
},
LineNumberStyle: {
Color: '000000',
BackgroundColor: 'ffffff',
},
};