import { ITheme } from './ITheme';

export const Base16Apprentice: ITheme = {
  DisplayName: 'Base16 Apprentice',
  CodeStyles: {
    Keyword: {
      Color: '5f87af',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '5f875f',
    },
    Plaintext: {
      Color: 'bcbcbc',
    },
    Punctuation: {
      Color: 'bcbcbc',
    },
    String: {
      Color: '5f87af',
    },
    Literal: {
      Color: '5f87af',
      FontWeight: 'bold',
    },
    Type: {
      Color: '87afd7',
    },
    Tag: {
      Color: '5f8787',
    },
    AttributeName: {
      Color: '87afd7',
    },
    Decimal: {
      Color: 'ff8700',
    },
    NoCode: {
      Color: '5f8787',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '333333',
  },
  LineNumberStyle: {
    Color: 'bcbcbc',
    BackgroundColor: '333333',
  },
};
