easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 818 B
text/typescript
import { ITheme } from './ITheme';
export const Base16IRBlack: ITheme = {
DisplayName: 'Base16 IR Black',
CodeStyles: {
Keyword: {
Color: 'b18a3d',
FontWeight: 'bold',
},
Comment: {
Color: 'c6c5fe',
},
Plaintext: {
Color: 'b5b3aa',
},
Punctuation: {
Color: 'b5b3aa',
},
String: {
Color: 'b18a3d',
},
Literal: {
Color: 'b18a3d',
FontWeight: 'bold',
},
Type: {
Color: 'ff73fd',
},
Tag: {
Color: 'ff6c60',
},
AttributeName: {
Color: 'ff73fd',
},
Decimal: {
Color: 'e9c062',
},
NoCode: {
Color: 'ff6c60',
},
},
BackgroundStyle: {
BackgroundColor: '484844',
},
LineNumberStyle: {
Color: 'b5b3aa',
BackgroundColor: '484844',
},
};