import { ITheme } from './ITheme';

export const UeNeonCandyLight: ITheme = {
  DisplayName: 'UE Neon Candy Light',
  CodeStyles: {
    Keyword: { Color: '7c4dff', FontWeight: 'bold' },
    Comment: { Color: '22a06b', FontStyle: 'italic' },
    Plaintext: { Color: '1f2a44' },
    Punctuation: { Color: '475569' },
    String: { Color: 'ec4899' },
    Literal: { Color: 'f59e0b' },
    Type: { Color: '2563eb' },
    Tag: { Color: '6d28d9' },
    AttributeName: { Color: '10b981' },
    AttributeValue: { Color: 'd946ef' },
    Decimal: { Color: 'f59e0b' },
    NoCode: { Color: '0ea5e9' },
  },
  BackgroundStyle: {
    BackgroundColor: 'ffffff',
  },
  LineNumberStyle: {
    Color: '64748b',
    BackgroundColor: 'ffffff',
  },
};
