import { ITheme } from './ITheme';

export const Base16MaterialLighter: ITheme = {
  DisplayName: 'Base16 Material Lighter',
  CodeStyles: {
    Keyword: {
      Color: 'e53935',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '39adb5',
    },
    Plaintext: {
      Color: '80cbc4',
    },
    Punctuation: {
      Color: '80cbc4',
    },
    String: {
      Color: 'e53935',
    },
    Literal: {
      Color: 'e53935',
      FontWeight: 'bold',
    },
    Type: {
      Color: '7c4dff',
    },
    Tag: {
      Color: 'ff5370',
    },
    AttributeName: {
      Color: '7c4dff',
    },
    Decimal: {
      Color: 'f76d47',
    },
    NoCode: {
      Color: 'ff5370',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'cceae7',
  },
  LineNumberStyle: {
    Color: '80cbc4',
    BackgroundColor: 'cceae7',
  },
};
