import { ITheme } from './ITheme';

export const Base16Vulcan: ITheme = {
  DisplayName: 'Base16 Vulcan',
  CodeStyles: {
    Keyword: {
      Color: '977d7c',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '977d7c',
    },
    Plaintext: {
      Color: '5b778c',
    },
    Punctuation: {
      Color: '5b778c',
    },
    String: {
      Color: '977d7c',
    },
    Literal: {
      Color: '977d7c',
      FontWeight: 'bold',
    },
    Type: {
      Color: '9198a3',
    },
    Tag: {
      Color: '818591',
    },
    AttributeName: {
      Color: '9198a3',
    },
    Decimal: {
      Color: '9198a3',
    },
    NoCode: {
      Color: '818591',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '003552',
  },
  LineNumberStyle: {
    Color: '5b778c',
    BackgroundColor: '003552',
  },
};
