easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 833 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Windows10Light: ITheme = {
DisplayName: 'Base16 Windows 10 Light',
CodeStyles: {
Keyword: {
Color: '16c60c',
FontWeight: 'bold',
},
Comment: {
Color: '3a96dd',
},
Plaintext: {
Color: '767676',
},
Punctuation: {
Color: '767676',
},
String: {
Color: '16c60c',
},
Literal: {
Color: '16c60c',
FontWeight: 'bold',
},
Type: {
Color: '881798',
},
Tag: {
Color: 'c50f1f',
},
AttributeName: {
Color: '881798',
},
Decimal: {
Color: 'f9f1a5',
},
NoCode: {
Color: 'c50f1f',
},
},
BackgroundStyle: {
BackgroundColor: 'd9d9d9',
},
LineNumberStyle: {
Color: '767676',
BackgroundColor: 'd9d9d9',
},
};