/* toml.css — semantic syntax palette for hand-wrapped <pre data-lang="toml">
 * listings. Linked only on pages that carry TOML.
 *
 * Same contract as java.css: semantic, language-neutral-where-it-maps class
 * names (.comment .string .number shared across every language's sheet;
 * .table .key are TOML's own constructs). Standalone on purpose — the clean
 * delete-target once degeneration-x generates these blocks. The phosphor
 * terminal chrome stays in styles.css; only the code TEXT is repainted.
 * Colors are a Darcula-family palette; the names are not married to it. */

pre[data-lang="toml"] > code { color: #a9b7c6; }

pre[data-lang="toml"] .comment { color: #808080; font-style: italic; }
pre[data-lang="toml"] .table   { color: #bbb529; }   /* [section] header   */
pre[data-lang="toml"] .key     { color: #9876aa; }   /* bare / dotted key  */
pre[data-lang="toml"] .string  { color: #6a8759; }
pre[data-lang="toml"] .number  { color: #6897bb; }
