easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
48 lines (46 loc) • 768 B
text/typescript
import { ITheme } from './ITheme';
export const TokyoNightDark: ITheme = {
DisplayName: 'Tokyo Night Dark',
CodeStyles: {
Keyword: {
Color: 'bb9af7',
},
Comment: {
Color: '9ece6a',
},
Plaintext: {
Color: '9aa5ce',
},
Punctuation: {
Color: 'c0caf5',
},
String: {
Color: '7aa2f7',
},
Literal: {
Color: '9ece6a',
},
Type: {
Color: '7aa2f7',
},
Tag: {
Color: 'bb9af7',
},
AttributeName: {
Color: 'bb9af7',
},
Decimal: {
Color: 'ff9e64',
},
NoCode: {
Color: '7dcfff',
},
},
BackgroundStyle: {
BackgroundColor: '1a1b26',
},
LineNumberStyle: {
Color: '9aa5ce',
BackgroundColor: '1a1b26',
},
};