import { ITheme } from './ITheme';

export const Base16Brogrammer: ITheme = {
  DisplayName: 'Base16 Brogrammer',
  CodeStyles: {
    Keyword: {
      Color: 'ffffff',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '1081d6',
    },
    Plaintext: {
      Color: '4e5ab7',
    },
    Punctuation: {
      Color: '4e5ab7',
    },
    String: {
      Color: 'ffffff',
    },
    Literal: {
      Color: 'ffffff',
      FontWeight: 'bold',
    },
    Type: {
      Color: '0f7ddb',
    },
    Tag: {
      Color: 'd6dbe5',
    },
    AttributeName: {
      Color: '0f7ddb',
    },
    Decimal: {
      Color: 'de352e',
    },
    NoCode: {
      Color: 'd6dbe5',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '2dc55e',
  },
  LineNumberStyle: {
    Color: '4e5ab7',
    BackgroundColor: '2dc55e',
  },
};
