import { ITheme } from './ITheme';

export const Base16PhD: ITheme = {
  DisplayName: 'Base16 PhD',
  CodeStyles: {
    Keyword: {
      Color: 'b08060',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '72b9bf',
    },
    Plaintext: {
      Color: 'b8bbc2',
    },
    Punctuation: {
      Color: 'b8bbc2',
    },
    String: {
      Color: 'b08060',
    },
    Literal: {
      Color: 'b08060',
      FontWeight: 'bold',
    },
    Type: {
      Color: '9989cc',
    },
    Tag: {
      Color: 'd07346',
    },
    AttributeName: {
      Color: '9989cc',
    },
    Decimal: {
      Color: 'f0a000',
    },
    NoCode: {
      Color: 'd07346',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '4d5666',
  },
  LineNumberStyle: {
    Color: 'b8bbc2',
    BackgroundColor: '4d5666',
  },
};
