import { ITheme } from './ITheme';

export const Base16Bright: ITheme = {
  DisplayName: 'Base16 Bright',
  CodeStyles: {
    Keyword: {
      Color: 'be643c',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '76c7b7',
    },
    Plaintext: {
      Color: 'e0e0e0',
    },
    Punctuation: {
      Color: 'e0e0e0',
    },
    String: {
      Color: 'be643c',
    },
    Literal: {
      Color: 'be643c',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'd381c3',
    },
    Tag: {
      Color: 'fb0120',
    },
    AttributeName: {
      Color: 'd381c3',
    },
    Decimal: {
      Color: 'fc6d24',
    },
    NoCode: {
      Color: 'fb0120',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '505050',
  },
  LineNumberStyle: {
    Color: 'e0e0e0',
    BackgroundColor: '505050',
  },
};
