UNPKG

easy-code-formatter-styles

Version:

A package which contains the styling details for easy code formatter.

51 lines (49 loc) 831 B
import { ITheme } from './ITheme'; export const Rainbow: ITheme = { DisplayName: 'Rainbow', CodeStyles: { Keyword: { Color: '8abeb7', }, Comment: { Color: '969896', FontStyle: 'italic', }, Plaintext: { Color: 'd1d9e1', }, Punctuation: { Color: 'd1d9e1', }, String: { Color: 'f99157', }, Literal: { Color: 'f99157', }, Type: { Color: 'ffcc66', FontWeight: 'bold', }, Tag: { Color: 'b5bd68', FontWeight: 'bold', }, AttributeName: { Color: '81a2be', }, Decimal: { Color: 'f99157', }, NoCode: { Color: 'dc322f', }, }, BackgroundStyle: { BackgroundColor: '474949', }, LineNumberStyle: { Color: 'd1d9e1', BackgroundColor: '474949', }, };