import { ITheme } from './ITheme';

export const Vs: ITheme = {
  DisplayName: 'Vs',
  CodeStyles: {
    Keyword: {
      Color: '808080',
    },
    Comment: {
      Color: '008000',
    },
    Plaintext: {
      Color: '000000',
    },
    Punctuation: {
      Color: '000000',
    },
    String: {
      Color: '00b0e8',
    },
    Literal: {
      Color: '00b0e8',
    },
    Type: {
      Color: 'a31515',
    },
    Tag: {
      Color: '00f',
    },
    AttributeName: {
      Color: 'f00',
    },
    NoCode: {
      Color: '2b91af',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'ffffff',
  },
  LineNumberStyle: {
    Color: '000000',
    BackgroundColor: 'ffffff',
  },
};
