import { ITheme } from './ITheme';

export const Base16DanQing: ITheme = {
  DisplayName: 'Base16 DanQing',
  CodeStyles: {
    Keyword: {
      Color: 'ca6924',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '30dff3',
    },
    Plaintext: {
      Color: 'e0f0ef',
    },
    Punctuation: {
      Color: 'e0f0ef',
    },
    String: {
      Color: 'ca6924',
    },
    Literal: {
      Color: 'ca6924',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'cca4e3',
    },
    Tag: {
      Color: 'f9906f',
    },
    AttributeName: {
      Color: 'cca4e3',
    },
    Decimal: {
      Color: 'b38a61',
    },
    NoCode: {
      Color: 'f9906f',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '5a605d',
  },
  LineNumberStyle: {
    Color: 'e0f0ef',
    BackgroundColor: '5a605d',
  },
};
