import { ITheme } from './ITheme';

export const SunburstHighlight: ITheme = {
  DisplayName: 'Sunburst',
  CodeStyles: {
    Keyword: {
      Color: 'e28964',
    },
    Comment: {
      Color: 'aeaeae',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'f8f8f8',
    },
    Punctuation: {
      Color: 'f8f8f8',
    },
    String: {
      Color: 'f8f8f8',
      BackgroundColor: '253b22',
    },
    Literal: {
      Color: '8996a8',
    },
    Type: {
      Color: '89bdff',
    },
    Tag: {
      Color: '89bdff',
    },
    AttributeName: {
      Color: 'cda869',
    },
    Decimal: {
      Color: '3387cc',
    },
    NoCode: {
      Color: 'f8f8f8',
      BackgroundColor: '420e09',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '000',
  },
  LineNumberStyle: {
    Color: 'f8f8f8',
    BackgroundColor: '000',
  },
};
