easy-code-formatter-styles
Version:
a package which contains the styling details for easy code formatter office app.
42 lines (40 loc) • 687 B
text/typescript
import { ITheme } from './ITheme';
export const BlueHintGray: ITheme = {
/** Display name */
DisplayName: 'Blue Hint Gray',
/** Code styles */
CodeStyles: {
Keyword: {
Color: '0000ff',
},
Comment: {
Color: '008000',
},
Plaintext: {
Color: '000',
},
Punctuation: {
Color: '000',
},
String: {
Color: 'a31515',
},
Literal: {
Color: '066',
},
Type: {
Color: '2b91af',
},
Tag: {
Color: '2b91af',
},
},
// Background color
BackgroundStyle: {
BackgroundColor: 'eaeaea',
},
// Line number background colors
LineNumberStyle: {
Background: 'none',
},
};