import { ITheme } from './ITheme';

export const Base16HorizonDark: ITheme = {
  DisplayName: 'Base16 Horizon Dark',
  CodeStyles: {
    Keyword: {
      Color: 'e4a382',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '24a8b4',
    },
    Plaintext: {
      Color: 'cbced0',
    },
    Punctuation: {
      Color: 'cbced0',
    },
    String: {
      Color: 'e4a382',
    },
    Literal: {
      Color: 'e4a382',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'b072d1',
    },
    Tag: {
      Color: 'e93c58',
    },
    AttributeName: {
      Color: 'b072d1',
    },
    Decimal: {
      Color: 'e58d7d',
    },
    NoCode: {
      Color: 'e93c58',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '2e303e',
  },
  LineNumberStyle: {
    Color: 'cbced0',
    BackgroundColor: '2e303e',
  },
};
