UNPKG

easy-code-formatter-styles

Version:

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

55 lines (53 loc) 959 B
import { ITheme } from './ITheme'; export const Purebasic: ITheme = { DisplayName: 'Purebasic', CodeStyles: { Keyword: { BackgroundColor: 'ffffdf', Color: '006666', FontWeight: 'bold', }, Comment: { BackgroundColor: 'ffffdf', Color: '00aaaa', }, Plaintext: { Color: '000000', }, Punctuation: { Color: '000000', }, String: { BackgroundColor: 'ffffdf', Color: '924b72', }, Literal: { Color: '924b72', FontWeight: 'bold', }, Type: { Color: '006666', FontWeight: 'bold', }, Tag: { Color: '006666', FontWeight: 'bold', }, AttributeName: { Color: '924b72', }, Decimal: { Color: '000000', }, NoCode: { Color: '924b72', }, }, BackgroundStyle: { BackgroundColor: 'ffffdf', }, LineNumberStyle: { Color: '000000', BackgroundColor: 'ffffdf', }, };