From cf9bc947bde37a1d260eecfa52fc1535c6109afa Mon Sep 17 00:00:00 2001 From: Dimitri Baptiste <55843498+ddbaptiste@users.noreply.github.com> Date: Fri, 23 Jan 2026 12:37:59 -0500 Subject: [PATCH] differentiate stdout from stderr in styling --- custom.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/custom.scss b/custom.scss index f41e658..8bb1c1f 100644 --- a/custom.scss +++ b/custom.scss @@ -157,9 +157,17 @@ pre:not(.sourceCode) { background: var(--bs-body-bg); font-family: sans-serif; font-weight: 600; + } + + .cell-output-stdout &:before { content: " Output "; } + .cell-output-stderr &:before { + content: " Warning/Error "; + color: var(--quarto-scss-export-syndemics-pink); + } + & code { margin-top: -1.2em; margin-left: 0.5em;