import { ITheme } from './ITheme';

export const Base16Github: ITheme = {
  DisplayName: 'Base16 Github',
  CodeStyles: {
    Keyword: {
      Color: '333333',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '183691',
    },
    Plaintext: {
      Color: '333333',
    },
    Punctuation: {
      Color: '333333',
    },
    String: {
      Color: '333333',
    },
    Literal: {
      Color: '333333',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'a71d5d',
    },
    Tag: {
      Color: 'ed6a43',
    },
    AttributeName: {
      Color: 'a71d5d',
    },
    Decimal: {
      Color: '0086b3',
    },
    NoCode: {
      Color: 'ed6a43',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'c8c8fa',
  },
  LineNumberStyle: {
    Color: '333333',
    BackgroundColor: 'c8c8fa',
  },
};
