import { ITheme } from './ITheme';

export const BrownPaper: ITheme = {
  DisplayName: 'Brown Paper',
  CodeStyles: {
    Keyword: {
      Color: '2c009f',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '802022',
    },
    Plaintext: {
      Color: '363c69',
    },
    Punctuation: {
      Color: '363c69',
    },
    String: {
      Color: '2c009f',
    },
    Literal: {
      Color: '802022',
      FontWeight: 'bold',
    },
    Type: {
      Color: '2c009f',
      FontWeight: 'bold',
    },
    Tag: {
      Color: '2c009f',
      FontWeight: 'bold',
    },
    AttributeName: {
      Color: '2c009f',
    },
    NoCode: {
      Color: '802022',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'b7a68e',
  },
  LineNumberStyle: {
    Color: '363c69',
    BackgroundColor: 'b7a68e',
  },
};
