import { ITheme } from './ITheme';

export const Base16Hardcore: ITheme = {
  DisplayName: 'Base16 Hardcore',
  CodeStyles: {
    Keyword: {
      Color: 'e8b882',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '708387',
    },
    Plaintext: {
      Color: 'cdcdcd',
    },
    Punctuation: {
      Color: 'cdcdcd',
    },
    String: {
      Color: 'e8b882',
    },
    Literal: {
      Color: 'e8b882',
      FontWeight: 'bold',
    },
    Type: {
      Color: '9e6ffe',
    },
    Tag: {
      Color: 'f92672',
    },
    AttributeName: {
      Color: '9e6ffe',
    },
    Decimal: {
      Color: 'fd971f',
    },
    NoCode: {
      Color: 'f92672',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '353535',
  },
  LineNumberStyle: {
    Color: 'cdcdcd',
    BackgroundColor: '353535',
  },
};
