import { ITheme } from './ITheme';

export const Idea: ITheme = {
  DisplayName: 'Idea',
  CodeStyles: {
    Keyword: {
      Color: '000080',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '808080',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: '000',
    },
    Punctuation: {
      Color: '000',
    },
    String: {
      Color: '000',
      FontWeight: 'bold',
      BackgroundColor: 'baeeba',
      FontStyle: 'italic',
    },
    Literal: {
      Color: '660e7a',
      FontWeight: 'normal',
      BackgroundColor: 'd0eded',
      FontStyle: 'italic',
    },
    Type: {
      Color: '000080',
      FontWeight: 'bold',
    },
    Tag: {
      BackgroundColor: 'efefef',
      Color: '000080',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: '0000ff',
      FontWeight: 'bold',
    },
    Decimal: {
      Color: '0000ff',
      FontWeight: 'normal',
    },
    NoCode: {
      Color: '000',
      FontWeight: 'normal',
      BackgroundColor: 'ffc8bd',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'fff',
  },
  LineNumberStyle: {
    Color: '000',
    BackgroundColor: 'fff',
  },
};
