easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 822 B
text/typescript
import { ITheme } from './ITheme';
export const Base16FruitSoda: ITheme = {
DisplayName: 'Base16 Fruit Soda',
CodeStyles: {
Keyword: {
Color: 'b16f40',
FontWeight: 'bold',
},
Comment: {
Color: '0f9cfd',
},
Plaintext: {
Color: '515151',
},
Punctuation: {
Color: '515151',
},
String: {
Color: 'b16f40',
},
Literal: {
Color: 'b16f40',
FontWeight: 'bold',
},
Type: {
Color: '611fce',
},
Tag: {
Color: 'fe3e31',
},
AttributeName: {
Color: '611fce',
},
Decimal: {
Color: 'fe6d08',
},
NoCode: {
Color: 'fe3e31',
},
},
BackgroundStyle: {
BackgroundColor: 'd8d5d5',
},
LineNumberStyle: {
Color: '515151',
BackgroundColor: 'd8d5d5',
},
};