easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
49 lines (47 loc) • 791 B
text/typescript
import { ITheme } from './ITheme';
export const AtomOneLight: ITheme = {
DisplayName: 'Atom One Light',
CodeStyles: {
Keyword: {
Color: 'a626a4',
},
Comment: {
Color: 'a0a1a7',
FontStyle: 'italic',
},
Plaintext: {
Color: '383a42',
},
Punctuation: {
Color: '383a42',
},
String: {
Color: '4078f2',
},
Literal: {
Color: '4078f2',
},
Type: {
Color: 'c18401',
},
Tag: {
Color: 'e45649',
},
AttributeName: {
Color: '986801',
},
Decimal: {
Color: '986801',
},
NoCode: {
Color: 'e45649',
},
},
BackgroundStyle: {
BackgroundColor: 'fafafa',
},
LineNumberStyle: {
Color: '383a42',
BackgroundColor: 'fafafa',
},
};