easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
51 lines (49 loc) • 839 B
text/typescript
import { ITheme } from './ITheme';
export const Nord: ITheme = {
DisplayName: 'Nord',
CodeStyles: {
Keyword: {
Color: '81a1c1',
},
Comment: {
Color: '4c566a',
},
Plaintext: {
Color: 'd8dee9',
},
Punctuation: {
Color: 'd8dee9',
},
String: {
BackgroundColor: 'a3be8c',
Color: '8fbcbb',
},
Literal: {
Color: 'd08770',
},
Type: {
Color: '88c0d0',
FontStyle: 'italic',
},
Tag: {
Color: '88c0d0',
},
AttributeName: {
Color: '88c0d0',
},
Decimal: {
Color: 'b48ead',
},
NoCode: {
Color: 'd8dee9',
BackgroundColor: 'bf616a',
},
},
BackgroundStyle: {
BackgroundColor: '2e3440',
},
LineNumberStyle: {
Color: 'd8dee9',
BackgroundColor: '2e3440',
},
};