easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
53 lines (51 loc) • 907 B
text/typescript
import { ITheme } from './ITheme';
export const ShadesOfPurple: ITheme = {
DisplayName: 'Shades Of Purple',
CodeStyles: {
Keyword: {
Color: '4cd213',
FontWeight: 'normal',
},
Comment: {
Color: 'ac65ff',
},
Plaintext: {
Color: 'e3dfff',
},
Punctuation: {
Color: 'e3dfff',
},
String: {
Color: 'fb9e00',
},
Literal: {
Color: 'fa658d',
FontWeight: 'normal',
},
Type: {
Color: 'fb9e00',
FontWeight: 'normal',
},
Tag: {
Color: 'fb9e00',
FontWeight: 'normal',
},
AttributeName: {
Color: '4cd213',
FontStyle: 'italic',
},
Decimal: {
Color: 'fa658d',
},
NoCode: {
Color: '4cd213',
},
},
BackgroundStyle: {
BackgroundColor: '2d2b57',
},
LineNumberStyle: {
Color: 'e3dfff',
BackgroundColor: '2d2b57',
},
};