import { ITheme } from './ITheme';

export const Base16Monokai: ITheme = {
  DisplayName: 'Base16 Monokai',
  CodeStyles: {
    Keyword: {
      Color: 'cc6633',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'a1efe4',
    },
    Plaintext: {
      Color: 'f8f8f2',
    },
    Punctuation: {
      Color: 'f8f8f2',
    },
    String: {
      Color: 'cc6633',
    },
    Literal: {
      Color: 'cc6633',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ae81ff',
    },
    Tag: {
      Color: 'f92672',
    },
    AttributeName: {
      Color: 'ae81ff',
    },
    Decimal: {
      Color: 'fd971f',
    },
    NoCode: {
      Color: 'f92672',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '49483e',
  },
  LineNumberStyle: {
    Color: 'f8f8f2',
    BackgroundColor: '49483e',
  },
};
