import { ITheme } from './ITheme';

export const Base16HeetchLight: ITheme = {
  DisplayName: 'Base16 Heetch Light',
  CodeStyles: {
    Keyword: {
      Color: 'dedae2',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'c33678',
    },
    Plaintext: {
      Color: '5a496e',
    },
    Punctuation: {
      Color: '5a496e',
    },
    String: {
      Color: 'dedae2',
    },
    Literal: {
      Color: 'dedae2',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'bd0152',
    },
    Tag: {
      Color: '27d9d5',
    },
    AttributeName: {
      Color: 'bd0152',
    },
    Decimal: {
      Color: 'bdb6c5',
    },
    NoCode: {
      Color: '27d9d5',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '7b6d8b',
  },
  LineNumberStyle: {
    Color: '5a496e',
    BackgroundColor: '7b6d8b',
  },
};
