/* console.css — semantic palette for hand-wrapped compiler/build OUTPUT
 * blocks. Currently scoped to <pre data-lang="bash"> because that is how the
 * two compile-failure listings are tagged (see note in the page review — the
 * "BASH" label on javac output is arguably a mislabel worth revisiting).
 *
 * Same contract as java.css: .module .type .constant .number are the shared
 * cross-language vocabulary, reused verbatim so an `error:` line reads with
 * the SAME colors as the Java that produced it. .error is console-specific.
 * Standalone delete-target for degeneration-x. Darcula-family palette. */

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

pre[data-lang="bash"] .error    { color: #ff6b68; font-weight: 600; }     /* error: / BUILD FAILED */
pre[data-lang="bash"] .module   { color: #629755; font-style: italic; }
pre[data-lang="bash"] .type     { color: #7fb3c8; }
pre[data-lang="bash"] .constant { color: #9876aa; font-style: italic; }
pre[data-lang="bash"] .number   { color: #6897bb; }
