/*
Custom light theme for Reveal.js (based on Zenburn style)
*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #f5f5f5; /* light grey */
  color: #333333;      /* main text in dark grey */
}

/* Keywords, tags */
.hljs-keyword,
.hljs-selector-tag,
.hljs-tag {
  color: #005cc5; /* deep blue */
}

/* Template tags */
.hljs-template-tag {
  color: #333333;
}

/* Numbers */
.hljs-number {
  color: #d73a49; /* soft red */
}

/* Variables, attributes */
.hljs-variable,
.hljs-template-variable,
.hljs-attribute {
  color: #e36209; /* orange */
}

/* Literals */
.hljs-literal {
  color: #6f42c1; /* purple */
}

/* Substitutions */
.hljs-subst {
  color: #555555;
}

/* Titles, names, classes */
.hljs-title,
.hljs-name,
.hljs-selector-id,
.hljs-selector-class,
.hljs-section,
.hljs-type {
  color: #22863a; /* green */
}

/* Symbols, bullets, links */
.hljs-symbol,
.hljs-bullet,
.hljs-link {
  color: #005cc5; /* blue */
}

/* Strings, built-ins */
.hljs-deletion,
.hljs-string,
.hljs-built_in,
.hljs-builtin-name {
  color: #032f62; /* dark blue */
}

/* Comments, quotes, meta */
.hljs-addition,
.hljs-comment,
.hljs-quote,
.hljs-meta {
  color: #6a737d; /* greyed out */
}

/* Emphasis / strong */
.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}