import { ITheme } from './ITheme';

export const PandaSyntaxDark: ITheme = {
  DisplayName: 'Panda Syntax Dark',
  CodeStyles: {
    Keyword: {
      Color: 'ffb86c',
    },
    Comment: {
      Color: 'bbbbbb',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'e6e6e6',
    },
    Punctuation: {
      Color: 'ffb86c',
    },
    String: {
      Color: '19f9d8',
    },
    Literal: {
      Color: 'ffb86c',
    },
    Type: {
      Color: 'ffb86c',
    },
    Tag: {
      Color: 'ffb86c',
    },
    AttributeName: {
      Color: 'ffb86c',
    },
    Decimal: {
      Color: 'ffb86c',
    },
    NoCode: {
      Color: '45a9f9',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '2a2c2d',
  },
  LineNumberStyle: {
    Color: 'e6e6e6',
    BackgroundColor: '2a2c2d',
  },
};
