From: Cameron Otsuka Date: Thu, 26 Feb 2026 18:29:07 +0000 (-0800) Subject: style highlight mark color X-Git-Url: https://git.otsuka.systems/?a=commitdiff_plain;h=c6bc759932a4a62085a418e88a740d220a88da58;p=cotsuka.github.io style highlight mark color --- 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; }