import { ITheme } from './ITheme';

export const Ascetic: ITheme = {
  DisplayName: 'Ascetic',
  CodeStyles: {
    Keyword: {
      FontWeight: 'bold',
      Color: '000000',
    },
    Comment: {
      Color: 'ccc',
    },
    Plaintext: {
      Color: '000000',
    },
    Punctuation: {
      Color: '000000',
    },
    String: {
      Color: '888',
    },
    Literal: {
      Color: 'ccc',
    },
    Type: {
      Color: '888',
      FontWeight: 'bold',
    },
    Tag: {
      FontWeight: 'bold',
      Color: '000000',
    },
    AttributeName: {
      Color: '888',
    },
    NoCode: {
      Color: 'ccc',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'ffffff',
  },
  LineNumberStyle: {
    Color: '000000',
    BackgroundColor: 'ffffff',
  },
};
