import { ITheme } from './ITheme';

export const Base16Kimber: ITheme = {
  DisplayName: 'Base16 Kimber',
  CodeStyles: {
    Keyword: {
      Color: '704f4f',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '78b4b4',
    },
    Plaintext: {
      Color: 'dedee7',
    },
    Punctuation: {
      Color: 'dedee7',
    },
    String: {
      Color: '704f4f',
    },
    Literal: {
      Color: '704f4f',
      FontWeight: 'bold',
    },
    Type: {
      Color: '86cacd',
    },
    Tag: {
      Color: 'c88c8c',
    },
    AttributeName: {
      Color: '86cacd',
    },
    Decimal: {
      Color: '476c88',
    },
    NoCode: {
      Color: 'c88c8c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '555d55',
  },
  LineNumberStyle: {
    Color: 'dedee7',
    BackgroundColor: '555d55',
  },
};
