easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 824 B
text/typescript
import { ITheme } from './ITheme';
export const Base16DarkViolet: ITheme = {
DisplayName: 'Base16 Dark Violet',
CodeStyles: {
Keyword: {
Color: 'a886bf',
FontWeight: 'bold',
},
Comment: {
Color: '40dfff',
},
Plaintext: {
Color: 'b08ae6',
},
Punctuation: {
Color: 'b08ae6',
},
String: {
Color: 'a886bf',
},
Literal: {
Color: 'a886bf',
FontWeight: 'bold',
},
Type: {
Color: '7e5ce6',
},
Tag: {
Color: 'a82ee6',
},
AttributeName: {
Color: '7e5ce6',
},
Decimal: {
Color: 'bb66cc',
},
NoCode: {
Color: 'a82ee6',
},
},
BackgroundStyle: {
BackgroundColor: '432d59',
},
LineNumberStyle: {
Color: 'b08ae6',
BackgroundColor: '432d59',
},
};