import { ITheme } from './ITheme';

export const Base16Dracula: ITheme = {
  DisplayName: 'Base16 Dracula',
  CodeStyles: {
    Keyword: {
      Color: '00f769',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'a1efe4',
    },
    Plaintext: {
      Color: 'e9e9f4',
    },
    Punctuation: {
      Color: 'e9e9f4',
    },
    String: {
      Color: '00f769',
    },
    Literal: {
      Color: '00f769',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b45bcf',
    },
    Tag: {
      Color: 'ea51b2',
    },
    AttributeName: {
      Color: 'b45bcf',
    },
    Decimal: {
      Color: 'b45bcf',
    },
    NoCode: {
      Color: 'ea51b2',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '4d4f68',
  },
  LineNumberStyle: {
    Color: 'e9e9f4',
    BackgroundColor: '4d4f68',
  },
};
