easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 816 B
text/typescript
import { ITheme } from './ITheme';
export const Base16IADark: ITheme = {
DisplayName: 'Base16 IA Dark',
CodeStyles: {
Keyword: {
Color: '8b6c37',
FontWeight: 'bold',
},
Comment: {
Color: '7c9cae',
},
Plaintext: {
Color: 'cccccc',
},
Punctuation: {
Color: 'cccccc',
},
String: {
Color: '8b6c37',
},
Literal: {
Color: '8b6c37',
FontWeight: 'bold',
},
Type: {
Color: 'b98eb2',
},
Tag: {
Color: 'd88568',
},
AttributeName: {
Color: 'b98eb2',
},
Decimal: {
Color: 'd86868',
},
NoCode: {
Color: 'd88568',
},
},
BackgroundStyle: {
BackgroundColor: '1d414d',
},
LineNumberStyle: {
Color: 'cccccc',
BackgroundColor: '1d414d',
},
};