import { ITheme } from './ITheme';

export const Base16Helios: ITheme = {
  DisplayName: 'Base16 Helios',
  CodeStyles: {
    Keyword: {
      Color: 'c85e0d',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '1ba595',
    },
    Plaintext: {
      Color: 'd5d5d5',
    },
    Punctuation: {
      Color: 'd5d5d5',
    },
    String: {
      Color: 'c85e0d',
    },
    Literal: {
      Color: 'c85e0d',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'be4264',
    },
    Tag: {
      Color: 'd72638',
    },
    AttributeName: {
      Color: 'be4264',
    },
    Decimal: {
      Color: 'eb8413',
    },
    NoCode: {
      Color: 'd72638',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '53585b',
  },
  LineNumberStyle: {
    Color: 'd5d5d5',
    BackgroundColor: '53585b',
  },
};
