easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 821 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Spacemacs: ITheme = {
DisplayName: 'Base16 Spacemacs',
CodeStyles: {
Keyword: {
Color: 'b03060',
FontWeight: 'bold',
},
Comment: {
Color: '2d9574',
},
Plaintext: {
Color: 'a3a3a3',
},
Punctuation: {
Color: 'a3a3a3',
},
String: {
Color: 'b03060',
},
Literal: {
Color: 'b03060',
FontWeight: 'bold',
},
Type: {
Color: 'a31db1',
},
Tag: {
Color: 'f2241f',
},
AttributeName: {
Color: 'a31db1',
},
Decimal: {
Color: 'ffa500',
},
NoCode: {
Color: 'f2241f',
},
},
BackgroundStyle: {
BackgroundColor: '444155',
},
LineNumberStyle: {
Color: 'a3a3a3',
BackgroundColor: '444155',
},
};