import { ITheme } from './ITheme';

export const Base16Apathy: ITheme = {
  DisplayName: 'Base16 Apathy',
  CodeStyles: {
    Keyword: {
      Color: '3e965b',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '963e4c',
    },
    Plaintext: {
      Color: '81b5ac',
    },
    Punctuation: {
      Color: '81b5ac',
    },
    String: {
      Color: '3e965b',
    },
    Literal: {
      Color: '3e965b',
      FontWeight: 'bold',
    },
    Type: {
      Color: '4c963e',
    },
    Tag: {
      Color: '3e9688',
    },
    AttributeName: {
      Color: '4c963e',
    },
    Decimal: {
      Color: '3e7996',
    },
    NoCode: {
      Color: '3e9688',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '184e45',
  },
  LineNumberStyle: {
    Color: '81b5ac',
    BackgroundColor: '184e45',
  },
};
