import { ITheme } from './ITheme';

export const PandaSyntaxLight: ITheme = {
  DisplayName: 'Panda Syntax Light',
  CodeStyles: {
    Keyword: {
      Color: '7641bb',
    },
    Comment: {
      Color: '676b79',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: '2a2c2d',
    },
    Punctuation: {
      Color: 'c56200',
    },
    String: {
      Color: '0d7d6c',
    },
    Literal: {
      Color: '7641bb',
    },
    Type: {
      Color: '7641bb',
    },
    Tag: {
      Color: '7641bb',
    },
    AttributeName: {
      Color: '7641bb',
    },
    Decimal: {
      Color: '7641bb',
    },
    NoCode: {
      Color: '3787c7',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'e6e6e6',
  },
  LineNumberStyle: {
    Color: '2a2c2d',
    BackgroundColor: 'e6e6e6',
  },
};
