import { ITheme } from './ITheme';

export const Base16Mocha: ITheme = {
  DisplayName: 'Base16 Mocha',
  CodeStyles: {
    Keyword: {
      Color: 'bb9584',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '7bbda4',
    },
    Plaintext: {
      Color: 'd0c8c6',
    },
    Punctuation: {
      Color: 'd0c8c6',
    },
    String: {
      Color: 'bb9584',
    },
    Literal: {
      Color: 'bb9584',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'a89bb9',
    },
    Tag: {
      Color: 'cb6077',
    },
    AttributeName: {
      Color: 'a89bb9',
    },
    Decimal: {
      Color: 'd28b71',
    },
    NoCode: {
      Color: 'cb6077',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '645240',
  },
  LineNumberStyle: {
    Color: 'd0c8c6',
    BackgroundColor: '645240',
  },
};
