import { ITheme } from './ITheme';

export const Rainbow: ITheme = {
  DisplayName: 'Rainbow',
  CodeStyles: {
    Keyword: {
      Color: '8abeb7',
    },
    Comment: {
      Color: '969896',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'd1d9e1',
    },
    Punctuation: {
      Color: 'd1d9e1',
    },
    String: {
      Color: 'f99157',
    },
    Literal: {
      Color: 'f99157',
    },
    Type: {
      Color: 'ffcc66',
      FontWeight: 'bold',
    },
    Tag: {
      Color: 'b5bd68',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: '81a2be',
    },
    Decimal: {
      Color: 'f99157',
    },
    NoCode: {
      Color: 'dc322f',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '474949',
  },
  LineNumberStyle: {
    Color: 'd1d9e1',
    BackgroundColor: '474949',
  },
};
