import { ITheme } from './ITheme';

export const Base16Rebecca: ITheme = {
  DisplayName: 'Base16 Rebecca',
  CodeStyles: {
    Keyword: {
      Color: 'ff79c6',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '8eaee0',
    },
    Plaintext: {
      Color: 'f1eff8',
    },
    Punctuation: {
      Color: 'f1eff8',
    },
    String: {
      Color: 'ff79c6',
    },
    Literal: {
      Color: 'ff79c6',
      FontWeight: 'bold',
    },
    Type: {
      Color: '7aa5ff',
    },
    Tag: {
      Color: 'a0a0c5',
    },
    AttributeName: {
      Color: '7aa5ff',
    },
    Decimal: {
      Color: 'efe4a1',
    },
    NoCode: {
      Color: 'a0a0c5',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '383a62',
  },
  LineNumberStyle: {
    Color: 'f1eff8',
    BackgroundColor: '383a62',
  },
};
