easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 822 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Windows95: ITheme = {
DisplayName: 'Base16 Windows 95',
CodeStyles: {
Keyword: {
Color: '00a800',
FontWeight: 'bold',
},
Comment: {
Color: '54fcfc',
},
Plaintext: {
Color: 'a8a8a8',
},
Punctuation: {
Color: 'a8a8a8',
},
String: {
Color: '00a800',
},
Literal: {
Color: '00a800',
FontWeight: 'bold',
},
Type: {
Color: 'fc54fc',
},
Tag: {
Color: 'fc5454',
},
AttributeName: {
Color: 'fc54fc',
},
Decimal: {
Color: 'a85400',
},
NoCode: {
Color: 'fc5454',
},
},
BackgroundStyle: {
BackgroundColor: '383838',
},
LineNumberStyle: {
Color: 'a8a8a8',
BackgroundColor: '383838',
},
};