import { ITheme } from './ITheme';

export const KimbieDark: ITheme = {
  DisplayName: 'Kimbie Dark',
  CodeStyles: {
    Keyword: {
      Color: '98676a',
    },
    Comment: {
      Color: 'd6baad',
    },
    Plaintext: {
      Color: 'd3af86',
    },
    Punctuation: {
      Color: 'd3af86',
    },
    String: {
      Color: '889b4a',
    },
    Literal: {
      Color: '889b4a',
    },
    Type: {
      Color: 'f06431',
    },
    Tag: {
      Color: '98676a',
    },
    AttributeName: {
      Color: 'f06431',
    },
    Decimal: {
      Color: 'f79a32',
    },
    NoCode: {
      Color: 'f79a32',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '221a0f',
  },
  LineNumberStyle: {
    Color: 'd3af86',
    BackgroundColor: '221a0f',
  },
};
