From ff62cba5b18f4fb3c50facead6eddf89e5c72394 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Mon, 18 May 2026 12:38:28 +0300 Subject: [PATCH] feat: add line-height-relaxed token and text selection/focus-visible styles --- src/shared/styles/theme.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/shared/styles/theme.css b/src/shared/styles/theme.css index a7a81da..28b65c7 100644 --- a/src/shared/styles/theme.css +++ b/src/shared/styles/theme.css @@ -23,6 +23,7 @@ /* === LINE HEIGHT === */ --line-height-tight: 1.2; --line-height-normal: 1.5; + --line-height-relaxed: 1.65; /* === FRAUNCES VARIABLE AXES === */ --fraunces-wonk: 1; @@ -132,6 +133,16 @@ @apply border-border; } + ::selection { + background-color: var(--blue); + color: var(--cream); + } + + :focus-visible { + outline: var(--border-width) solid var(--blue); + outline-offset: 2px; + } + html { font-size: var(--font-size); }