import { ITheme } from './ITheme';

export const SchoolBook: ITheme = {
  DisplayName: 'School Book',
  CodeStyles: {
    Keyword: {
      Color: '2c009f',
      FontWeight: 'bold',
    },
    Comment: {
      Color: 'e60415',
    },
    Plaintext: {
      Color: '3e5915',
    },
    Punctuation: {
      Color: '3e5915',
    },
    String: {
      Color: '2c009f',
    },
    Literal: {
      Color: 'e60415',
      FontWeight: 'bold',
    },
    Type: {
      Color: '2c009f',
      FontWeight: 'bold',
    },
    Tag: {
      Color: '005599',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: '2c009f',
    },
    NoCode: {
      Color: 'e60415',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'f6f5b2',
  },
  LineNumberStyle: {
    Color: '3e5915',
    BackgroundColor: 'f6f5b2',
  },
};
