import { ITheme } from './ITheme';

export const Base16Espresso: ITheme = {
  DisplayName: 'Base16 Espresso',
  CodeStyles: {
    Keyword: {
      Color: 'f97394',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'bed6ff',
    },
    Plaintext: {
      Color: 'cccccc',
    },
    Punctuation: {
      Color: 'cccccc',
    },
    String: {
      Color: 'f97394',
    },
    Literal: {
      Color: 'f97394',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'd197d9',
    },
    Tag: {
      Color: 'd25252',
    },
    AttributeName: {
      Color: 'd197d9',
    },
    Decimal: {
      Color: 'f9a959',
    },
    NoCode: {
      Color: 'd25252',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '515151',
  },
  LineNumberStyle: {
    Color: 'cccccc',
    BackgroundColor: '515151',
  },
};
