import { ITheme } from './ITheme';

export const Base16SilkLight: ITheme = {
  DisplayName: 'Base16 Silk Light',
  CodeStyles: {
    Keyword: {
      Color: '865369',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '329ca2',
    },
    Plaintext: {
      Color: '385156',
    },
    Punctuation: {
      Color: '385156',
    },
    String: {
      Color: '865369',
    },
    Literal: {
      Color: '865369',
      FontWeight: 'bold',
    },
    Type: {
      Color: '6e6582',
    },
    Tag: {
      Color: 'cf432e',
    },
    AttributeName: {
      Color: '6e6582',
    },
    Decimal: {
      Color: 'd27f46',
    },
    NoCode: {
      Color: 'cf432e',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '90b7b6',
  },
  LineNumberStyle: {
    Color: '385156',
    BackgroundColor: '90b7b6',
  },
};
