import { ITheme } from './ITheme';

export const Base16Brewer: ITheme = {
  DisplayName: 'Base16 Brewer',
  CodeStyles: {
    Keyword: {
      Color: 'b15928',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '80b1d3',
    },
    Plaintext: {
      Color: 'b7b8b9',
    },
    Punctuation: {
      Color: 'b7b8b9',
    },
    String: {
      Color: 'b15928',
    },
    Literal: {
      Color: 'b15928',
      FontWeight: 'bold',
    },
    Type: {
      Color: '756bb1',
    },
    Tag: {
      Color: 'e31a1c',
    },
    AttributeName: {
      Color: '756bb1',
    },
    Decimal: {
      Color: 'e6550d',
    },
    NoCode: {
      Color: 'e31a1c',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '515253',
  },
  LineNumberStyle: {
    Color: 'b7b8b9',
    BackgroundColor: '515253',
  },
};
