import { ITheme } from './ITheme';

export const Base16IcyDark: ITheme = {
  DisplayName: 'Base16 Icy Dark',
  CodeStyles: {
    Keyword: {
      Color: '0097a7',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '26c6da',
    },
    Plaintext: {
      Color: '095b67',
    },
    Punctuation: {
      Color: '095b67',
    },
    String: {
      Color: '0097a7',
    },
    Literal: {
      Color: '0097a7',
      FontWeight: 'bold',
    },
    Type: {
      Color: '00acc1',
    },
    Tag: {
      Color: '16c1d9',
    },
    AttributeName: {
      Color: '00acc1',
    },
    Decimal: {
      Color: 'b3ebf2',
    },
    NoCode: {
      Color: '16c1d9',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '041f23',
  },
  LineNumberStyle: {
    Color: '095b67',
    BackgroundColor: '041f23',
  },
};
