import { ITheme } from './ITheme';

export const Base16Pasque: ITheme = {
  DisplayName: 'Base16 Pasque',
  CodeStyles: {
    Keyword: {
      Color: '59325c',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '7263aa',
    },
    Plaintext: {
      Color: 'dedcdf',
    },
    Punctuation: {
      Color: 'dedcdf',
    },
    String: {
      Color: '59325c',
    },
    Literal: {
      Color: '59325c',
      FontWeight: 'bold',
    },
    Type: {
      Color: '953b9d',
    },
    Tag: {
      Color: 'a92258',
    },
    AttributeName: {
      Color: '953b9d',
    },
    Decimal: {
      Color: '918889',
    },
    NoCode: {
      Color: 'a92258',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '3e2d5c',
  },
  LineNumberStyle: {
    Color: 'dedcdf',
    BackgroundColor: '3e2d5c',
  },
};
