import { ITheme } from './ITheme';

export const Base16BlackMetal: ITheme = {
  DisplayName: 'Base16 Black Metal',
  CodeStyles: {
    Keyword: {
      Color: '444444',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'aaaaaa',
    },
    Plaintext: {
      Color: 'c1c1c1',
    },
    Punctuation: {
      Color: 'c1c1c1',
    },
    String: {
      Color: '444444',
    },
    Literal: {
      Color: '444444',
      FontWeight: 'bold',
    },
    Type: {
      Color: '999999',
    },
    Tag: {
      Color: '5f8787',
    },
    AttributeName: {
      Color: '999999',
    },
    Decimal: {
      Color: 'aaaaaa',
    },
    NoCode: {
      Color: '5f8787',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '222222',
  },
  LineNumberStyle: {
    Color: 'c1c1c1',
    BackgroundColor: '222222',
  },
};
