easy-code-formatter-styles
Version:
A package which contains the styling details for easy code formatter.
51 lines (49 loc) • 831 B
text/typescript
import { ITheme } from './ITheme';
export const XCode: ITheme = {
DisplayName: 'XCode',
CodeStyles: {
Keyword: {
Color: 'aa0d91',
FontWeight: 'bold',
},
Comment: {
Color: '007400',
},
Plaintext: {
Color: '000000',
},
Punctuation: {
Color: '000000',
},
String: {
Color: '1c00cf',
BackgroundColor: 'baeeba',
},
Literal: {
Color: '643820',
},
Type: {
Color: '5c2699',
},
Tag: {
Color: 'aa0d91',
},
AttributeName: {
Color: '836c28',
},
Decimal: {
Color: '1c00cf',
},
NoCode: {
Color: '000',
BackgroundColor: 'ffc8bd',
},
},
BackgroundStyle: {
BackgroundColor: 'fff',
},
LineNumberStyle: {
Color: '000000',
BackgroundColor: 'fff',
},
};