import { ITheme } from './ITheme';

export const Base16MellowPurple: ITheme = {
  DisplayName: 'Base16 Mellow Purple',
  CodeStyles: {
    Keyword: {
      Color: '4d6fff',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'b900b1',
    },
    Plaintext: {
      Color: 'ffeeff',
    },
    Punctuation: {
      Color: 'ffeeff',
    },
    String: {
      Color: '4d6fff',
    },
    Literal: {
      Color: '4d6fff',
      FontWeight: 'bold',
    },
    Type: {
      Color: '8991bb',
    },
    Tag: {
      Color: '00d9e9',
    },
    AttributeName: {
      Color: '8991bb',
    },
    Decimal: {
      Color: 'aa00a3',
    },
    NoCode: {
      Color: '00d9e9',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '331354',
  },
  LineNumberStyle: {
    Color: 'ffeeff',
    BackgroundColor: '331354',
  },
};
