import { ITheme } from './ITheme';

export const GradientDark: ITheme = {
  DisplayName: 'Gradient Dark',
  CodeStyles: {
    Keyword: {
      Color: '17fc95',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'af8dd9',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'e7e4eb',
    },
    Punctuation: {
      Color: 'e7e4eb',
    },
    String: {
      Color: 'e7ff9f',
    },
    Literal: {
      Color: 'ff9e44',
    },
    Type: {
      Color: 'ffc800',
      FontWeight: 'bold',
    },
    Tag: {
      Color: 'ffc800',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: 'e7ff9f',
    },
    Decimal: {
      Color: 'c5fe00',
    },
    NoCode: {
      Color: 'ff9e44',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '652487',
  },
  LineNumberStyle: {
    Color: 'e7e4eb',
    BackgroundColor: '652487',
  },
};
