import { ITheme } from './ITheme';

export const QtcreatorLight: ITheme = {
  DisplayName: 'Qtcreator Light',
  CodeStyles: {
    Keyword: {
      Color: '008000',
    },
    Comment: {
      Color: '008000',
    },
    Plaintext: {
      Color: '000000',
    },
    Punctuation: {
      Color: '000000',
    },
    String: {
      Color: '008000',
    },
    Literal: {
      Color: '008000',
    },
    Type: {
      FontStyle: 'italic',
      Color: '008000',
    },
    Tag: {
      Color: '000000',
    },
    AttributeName: {
      Color: '008000',
    },
    Decimal: {
      Color: '000080',
    },
    NoCode: {
      Color: '008000',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'ffffff',
  },
  LineNumberStyle: {
    Color: '000000',
    BackgroundColor: 'ffffff',
  },
};
