import { ITheme } from './ITheme';

export const Theme1cLight: ITheme = {
  DisplayName: '1cLight',
  CodeStyles: {
    Keyword: {
      Color: '963200',
    },
    Comment: {
      Color: '000000',
    },
    Plaintext: {
      Color: '0000ff',
    },
    Punctuation: {
      Color: 'ab5656',
    },
    String: {
      Color: '963200',
    },
    Literal: {
      Color: '963200',
    },
    Type: {
      Color: '0000ff',
    },
    Tag: {
      Color: 'ff0000',
    },
    AttributeName: {
      Color: 'ab5656',
    },
    Decimal: {
      Color: '000000',
    },
    NoCode: {
      Color: '000000',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'ffffff',
  },
  LineNumberStyle: {
    Color: '0000ff',
    BackgroundColor: 'ffffff',
  },
};
