easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
50 lines (48 loc) • 817 B
text/typescript
import { ITheme } from './ITheme';
export const Base16Paraiso: ITheme = {
DisplayName: 'Base16 Paraiso',
CodeStyles: {
Keyword: {
Color: 'e96ba8',
FontWeight: 'bold',
},
Comment: {
Color: '5bc4bf',
},
Plaintext: {
Color: 'a39e9b',
},
Punctuation: {
Color: 'a39e9b',
},
String: {
Color: 'e96ba8',
},
Literal: {
Color: 'e96ba8',
FontWeight: 'bold',
},
Type: {
Color: '815ba4',
},
Tag: {
Color: 'ef6155',
},
AttributeName: {
Color: '815ba4',
},
Decimal: {
Color: 'f99b15',
},
NoCode: {
Color: 'ef6155',
},
},
BackgroundStyle: {
BackgroundColor: '4f424c',
},
LineNumberStyle: {
Color: 'a39e9b',
BackgroundColor: '4f424c',
},
};