import { ITheme } from './ITheme';

export const Base16Sandcastle: ITheme = {
  DisplayName: 'Base16 Sandcastle',
  CodeStyles: {
    Keyword: {
      Color: 'a87322',
      FontWeight: 'bold',
    },
    Comment: {
      Color: '83a598',
    },
    Plaintext: {
      Color: 'a89984',
    },
    Punctuation: {
      Color: 'a89984',
    },
    String: {
      Color: 'a87322',
    },
    Literal: {
      Color: 'a87322',
      FontWeight: 'bold',
    },
    Type: {
      Color: 'd75f5f',
    },
    Tag: {
      Color: '83a598',
    },
    AttributeName: {
      Color: 'd75f5f',
    },
    Decimal: {
      Color: 'a07e3b',
    },
    NoCode: {
      Color: '83a598',
    },
  },
  BackgroundStyle: {
    BackgroundColor: '3e4451',
  },
  LineNumberStyle: {
    Color: 'a89984',
    BackgroundColor: '3e4451',
  },
};
