import { ITheme } from './ITheme';

export const Base16GruvboxDarkPale: ITheme = {
  DisplayName: 'Base16 Gruvbox Dark, Pale',
  CodeStyles: {
    Keyword: {
      Color: 'd65d0e',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '85ad85',
    },
    Plaintext: {
      Color: 'dab997',
    },
    Punctuation: {
      Color: 'dab997',
    },
    String: {
      Color: 'd65d0e',
    },
    Literal: {
      Color: 'd65d0e',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'd485ad',
    },
    Tag: {
      Color: 'd75f5f',
    },
    AttributeName: {
      Color: 'd485ad',
    },
    Decimal: {
      Color: 'ff8700',
    },
    NoCode: {
      Color: 'd75f5f',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '4e4e4e',
  },
  LineNumberStyle: {
    Color: 'dab997',
    BackgroundColor: '4e4e4e',
  },
};
