UNPKG

easy-code-formatter-styles

Version:

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

48 lines (46 loc) 788 B
import { ITheme } from './ITheme'; export const MonoBlue: ITheme = { DisplayName: 'Mono Blue', CodeStyles: { Keyword: { FontWeight: 'bold', Color: '00193a', }, Comment: { Color: '0048ab', }, Plaintext: { Color: '00193a', }, Punctuation: { Color: '00193a', }, String: { Color: '4c81c9', }, Literal: { Color: '4c81c9', }, Type: { FontWeight: 'bold', Color: '0048ab', }, Tag: { FontWeight: 'bold', Color: '0048ab', }, AttributeName: { Color: '4c81c9', }, NoCode: { Color: '4c81c9', }, }, BackgroundStyle: { BackgroundColor: 'eaeef3', }, LineNumberStyle: { Color: '00193a', BackgroundColor: 'eaeef3', }, };