import { ITheme } from './ITheme';

export const Base16GruvboxLightSoft: ITheme = {
  DisplayName: 'Base16 Gruvbox Light, Soft',
  CodeStyles: {
    Keyword: {
      Color: 'd65d0e',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '427b58',
    },
    Plaintext: {
      Color: '504945',
    },
    Punctuation: {
      Color: '504945',
    },
    String: {
      Color: 'd65d0e',
    },
    Literal: {
      Color: 'd65d0e',
      FontWeight: 'bold',
    },
    Type: {
      Color: '8f3f71',
    },
    Tag: {
      Color: '9d0006',
    },
    AttributeName: {
      Color: '8f3f71',
    },
    Decimal: {
      Color: 'af3a03',
    },
    NoCode: {
      Color: '9d0006',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'd5c4a1',
  },
  LineNumberStyle: {
    Color: '504945',
    BackgroundColor: 'd5c4a1',
  },
};
