import { ITheme } from './ITheme';

export const Base16UnikittyDark: ITheme = {
  DisplayName: 'Base16 Unikitty Dark',
  CodeStyles: {
    Keyword: {
      Color: 'c720ca',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '149bda',
    },
    Plaintext: {
      Color: 'bcbabe',
    },
    Punctuation: {
      Color: 'bcbabe',
    },
    String: {
      Color: 'c720ca',
    },
    Literal: {
      Color: 'c720ca',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'bb60ea',
    },
    Tag: {
      Color: 'd8137f',
    },
    AttributeName: {
      Color: 'bb60ea',
    },
    Decimal: {
      Color: 'd65407',
    },
    NoCode: {
      Color: 'd8137f',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '666369',
  },
  LineNumberStyle: {
    Color: 'bcbabe',
    BackgroundColor: '666369',
  },
};
