import { ITheme } from './ITheme';

export const Vs2015: ITheme = {
  DisplayName: 'Vs2015',
  CodeStyles: {
    Keyword: {
      Color: '9b9b9b',
    },
    Comment: {
      Color: '57a64a',
      FontStyle: 'italic',
    },
    Plaintext: {
      Color: 'dcdcdc',
    },
    Punctuation: {
      Color: 'dcdcdc',
    },
    String: {
      Color: 'd69d85',
      BackgroundColor: '144212',
    },
    Literal: {
      Color: 'd7ba7d',
    },
    Type: {
      Color: 'ffd700',
    },
    Tag: {
      Color: 'd7ba7d',
    },
    AttributeName: {
      Color: 'd7ba7d',
    },
    Decimal: {
      Color: 'b8d7a3',
    },
    NoCode: {
      Color: 'dcdcdc',
      BackgroundColor: '600',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '1e1e1e',
  },
  LineNumberStyle: {
    Color: 'dcdcdc',
    BackgroundColor: '1e1e1e',
  },
};
