import { ITheme } from './ITheme';

export const KimbieLight: ITheme = {
  DisplayName: 'Kimbie Light',
  CodeStyles: {
    Keyword: {
      Color: '98676a',
    },
    Comment: {
      Color: 'a57a4c',
    },
    Plaintext: {
      Color: '84613d',
    },
    Punctuation: {
      Color: '84613d',
    },
    String: {
      Color: '889b4a',
    },
    Literal: {
      Color: '889b4a',
    },
    Type: {
      Color: 'f06431',
    },
    Tag: {
      Color: '98676a',
    },
    AttributeName: {
      Color: 'f06431',
    },
    Decimal: {
      Color: 'f79a32',
    },
    NoCode: {
      Color: 'f79a32',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'fbebd4',
  },
  LineNumberStyle: {
    Color: '84613d',
    BackgroundColor: 'fbebd4',
  },
};
