import { ITheme } from './ITheme';

export const Base16HorizonLight: ITheme = {
  DisplayName: 'Base16 Horizon Light',
  CodeStyles: {
    Keyword: {
      Color: 'f9cbbe',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '59e1e3',
    },
    Plaintext: {
      Color: '403c3d',
    },
    Punctuation: {
      Color: '403c3d',
    },
    String: {
      Color: 'f9cbbe',
    },
    Literal: {
      Color: 'f9cbbe',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'ee64ac',
    },
    Tag: {
      Color: 'e95678',
    },
    AttributeName: {
      Color: 'ee64ac',
    },
    Decimal: {
      Color: 'f9cec3',
    },
    NoCode: {
      Color: 'e95678',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'f9cbbe',
  },
  LineNumberStyle: {
    Color: '403c3d',
    BackgroundColor: 'f9cbbe',
  },
};
