import { ITheme } from './ITheme';

export const Base16WindowsNTLight: ITheme = {
  DisplayName: 'Base16 Windows NT Light',
  CodeStyles: {
    Keyword: {
      Color: '00ff00',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '008080',
    },
    Plaintext: {
      Color: '808080',
    },
    Punctuation: {
      Color: '808080',
    },
    String: {
      Color: '00ff00',
    },
    Literal: {
      Color: '00ff00',
      FontWeight: 'bold',
    },
    Type: {
      Color: '800080',
    },
    Tag: {
      Color: '800000',
    },
    AttributeName: {
      Color: '800080',
    },
    Decimal: {
      Color: 'ffff00',
    },
    NoCode: {
      Color: '800000',
    },
  },
  BackgroundStyle: {
    BackgroundColor: 'd5d5d5',
  },
  LineNumberStyle: {
    Color: '808080',
    BackgroundColor: 'd5d5d5',
  },
};
