import { ITheme } from './ITheme';

export const Base16Materia: ITheme = {
  DisplayName: 'Base16 Materia',
  CodeStyles: {
    Keyword: {
      Color: 'ec5f67',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '80cbc4',
    },
    Plaintext: {
      Color: 'cdd3de',
    },
    Punctuation: {
      Color: 'cdd3de',
    },
    String: {
      Color: 'ec5f67',
    },
    Literal: {
      Color: 'ec5f67',
      FontWeight: 'bold',
    },
    Type: {
      Color: '82aaff',
    },
    Tag: {
      Color: 'ec5f67',
    },
    AttributeName: {
      Color: '82aaff',
    },
    Decimal: {
      Color: 'ea9560',
    },
    NoCode: {
      Color: 'ec5f67',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '37474f',
  },
  LineNumberStyle: {
    Color: 'cdd3de',
    BackgroundColor: '37474f',
  },
};
