import { ITheme } from './ITheme';

export const GradientLight: ITheme = {
  DisplayName: 'Gradient Light',
  CodeStyles: {
    Keyword: {
      Color: '7d2801',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'cb7200',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: '250482',
    },
    Punctuation: {
      Color: '250482',
    },
    String: {
      Color: '296562',
    },
    Literal: {
      Color: 'ad13ff',
    },
    Type: {
      Color: '529117',
      FontWeight: 'bold',
    },
    Tag: {
      Color: '529117',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: '296562',
    },
    Decimal: {
      Color: '7f0096',
    },
    NoCode: {
      Color: 'ad13ff',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'f9ccff',
  },
  LineNumberStyle: {
    Color: '250482',
    BackgroundColor: 'f9ccff',
  },
};
