import { ITheme } from './ITheme';

export const A11YDark: ITheme = {
  DisplayName: 'A11YDark',
  CodeStyles: {
    Keyword: {
      Color: 'dcc6e0',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'd4d0ab',
    },
    Plaintext: {
      Color: 'f8f8f2',
    },
    Punctuation: {
      Color: 'f8f8f2',
    },
    String: {
      Color: 'abe338',
    },
    Literal: {
      Color: 'abe338',
    },
    Type: {
      Color: '00e0e0',
    },
    Tag: {
      Color: 'dcc6e0',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: 'ffd700',
    },
    Decimal: {
      Color: 'f5ab35',
    },
    NoCode: {
      Color: 'ffa07a',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '2b2b2b',
  },
  LineNumberStyle: {
    Color: 'f8f8f2',
    BackgroundColor: '2b2b2b',
  },
};
