import { ITheme } from './ITheme';

export const UeAuroraPopLight: ITheme = {
  DisplayName: 'UE Aurora Pop Light',
  CodeStyles: {
    Keyword: { Color: '4f46e5', FontWeight: 'bold' },
    Comment: { Color: '16a34a', FontStyle: 'italic' },
    Plaintext: { Color: '111827' },
    Punctuation: { Color: '334155' },
    String: { Color: 'db2777' },
    Literal: { Color: '8b5cf6' },
    Type: { Color: '0891b2' },
    Tag: { Color: '2563eb' },
    AttributeName: { Color: '059669' },
    AttributeValue: { Color: 'c026d3' },
    Decimal: { Color: 'f59e0b' },
    NoCode: { Color: '7c3aed' },
  },
  BackgroundStyle: {
    BackgroundColor: 'fcfcff',
  },
  LineNumberStyle: {
    Color: '64748b',
    BackgroundColor: 'fcfcff',
  },
};
