import { ITheme } from './ITheme';

export const ShadesOfPurple: ITheme = {
  DisplayName: 'Shades Of Purple',
  CodeStyles: {
    Keyword: {
      Color: '4cd213',
      FontWeight: 'normal',
    },
    Comment: {
      Color: 'ac65ff',
    },
    Plaintext: {
      Color: 'e3dfff',
    },
    Punctuation: {
      Color: 'e3dfff',
    },
    String: {
      Color: 'fb9e00',
    },
    Literal: {
      Color: 'fa658d',
      FontWeight: 'normal',
    },
    Type: {
      Color: 'fb9e00',
      FontWeight: 'normal',
    },
    Tag: {
      Color: 'fb9e00',
      FontWeight: 'normal',
    },
    AttributeName: {
      Color: '4cd213',
      FontStyle: 'italic',
    },
    Decimal: {
      Color: 'fa658d',
    },
    NoCode: {
      Color: '4cd213',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '2d2b57',
  },
  LineNumberStyle: {
    Color: 'e3dfff',
    BackgroundColor: '2d2b57',
  },
};
