import { ITheme } from './ITheme';

export const Base16GrayscaleDark: ITheme = {
  DisplayName: 'Base16 Grayscale Dark',
  CodeStyles: {
    Keyword: {
      Color: '5e5e5e',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '868686',
    },
    Plaintext: {
      Color: 'b9b9b9',
    },
    Punctuation: {
      Color: 'b9b9b9',
    },
    String: {
      Color: '5e5e5e',
    },
    Literal: {
      Color: '5e5e5e',
      FontWeight: 'bold',
    },
    Type: {
      Color: '747474',
    },
    Tag: {
      Color: '7c7c7c',
    },
    AttributeName: {
      Color: '747474',
    },
    Decimal: {
      Color: '999999',
    },
    NoCode: {
      Color: '7c7c7c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '464646',
  },
  LineNumberStyle: {
    Color: 'b9b9b9',
    BackgroundColor: '464646',
  },
};
