From c6bc759932a4a62085a418e88a740d220a88da58 Mon Sep 17 00:00:00 2001 From: Cameron Otsuka Date: Thu, 26 Feb 2026 10:29:07 -0800 Subject: [PATCH] style highlight mark color --- src/styles/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/style.css b/src/styles/style.css index 776af51..12290ff 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -20,6 +20,7 @@ --color-info: light-dark(#06458e, #5199e6); --color-warn: light-dark(#703800, #f19e4c); --color-error: light-dark(#900e1d, #ef6e7e); + --color-highlight: light-dark(#a66a74, #8c4f5b); /* Raw values for JS (needed for React components) */ --color-bg-light: #e6e2d6; @@ -84,6 +85,10 @@ h6 { strong { font-weight: 600; } +mark { + color: var(--color-text); + background-color: var(--color-highlight); +} p { margin-block-end: 1rem; } -- 2.53.0