import { ITheme } from './ITheme';

export const Base16Hopscotch: ITheme = {
  DisplayName: 'Base16 Hopscotch',
  CodeStyles: {
    Keyword: {
      Color: 'b33508',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '149b93',
    },
    Plaintext: {
      Color: 'b9b5b8',
    },
    Punctuation: {
      Color: 'b9b5b8',
    },
    String: {
      Color: 'b33508',
    },
    Literal: {
      Color: 'b33508',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'c85e7c',
    },
    Tag: {
      Color: 'dd464c',
    },
    AttributeName: {
      Color: 'c85e7c',
    },
    Decimal: {
      Color: 'fd8b19',
    },
    NoCode: {
      Color: 'dd464c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '5c545b',
  },
  LineNumberStyle: {
    Color: 'b9b5b8',
    BackgroundColor: '5c545b',
  },
};
