import { ITheme } from './ITheme';

export const NightOwl: ITheme = {
  DisplayName: 'Night Owl',
  CodeStyles: {
    Keyword: {
      Color: 'c792ea',
      FontStyle: 'italic',
    },
    Comment: {
      Color: '697098',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'd6deeb',
    },
    Punctuation: {
      Color: 'd6deeb',
    },
    String: {
      Color: 'addb67',
      FontStyle: 'italic',
    },
    Literal: {
      Color: 'addb67',
    },
    Type: {
      Color: '82b1ff',
      FontStyle: 'italic',
    },
    Tag: {
      Color: 'ff6363',
    },
    AttributeName: {
      Color: 'c792ea',
      FontStyle: 'italic',
    },
    Decimal: {
      Color: 'f78c6c',
    },
    NoCode: {
      Color: 'ef5350',
      FontStyle: 'italic',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '011627',
  },
  LineNumberStyle: {
    Color: 'd6deeb',
    BackgroundColor: '011627',
  },
};
