easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 830 B
text/typescript
import { ITheme } from './ITheme';
export const Base16HumanoidLight: ITheme = {
DisplayName: 'Base16 Humanoid Light',
CodeStyles: {
Keyword: {
Color: 'b27701',
FontWeight: 'bold',
},
Comment: {
Color: '008e8e',
},
Plaintext: {
Color: '232629',
},
Punctuation: {
Color: '232629',
},
String: {
Color: 'b27701',
},
Literal: {
Color: 'b27701',
FontWeight: 'bold',
},
Type: {
Color: '700f98',
},
Tag: {
Color: 'b0151a',
},
AttributeName: {
Color: '700f98',
},
Decimal: {
Color: 'ff3d00',
},
NoCode: {
Color: 'b0151a',
},
},
BackgroundStyle: {
BackgroundColor: 'deded8',
},
LineNumberStyle: {
Color: '232629',
BackgroundColor: 'deded8',
},
};