diff options
| author | Fuwn <[email protected]> | 2026-05-15 12:06:40 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-15 12:06:40 +0000 |
| commit | 541b5740a96bdc9585e8e3b88e44955603db862c (patch) | |
| tree | 70a4782e9d6088bf1ddb411192c913f8b7a3b182 /src/styles/input.css | |
| parent | style(card): move backdrop blur to an opt-in .card-glass modifier (diff) | |
| download | due.moe-541b5740a96bdc9585e8e3b88e44955603db862c.tar.xz due.moe-541b5740a96bdc9585e8e3b88e44955603db862c.zip | |
refactor(colours): tokenise card shadows and scrims
Introduce --shadow-card, --shadow-card-emphasized, --shadow-cta,
--scrim, --scrim-soft, and --scrim-banner. Migrate 14 inline
literals (card.css, input.css, Notification, MediaRoulette, the
two Landing CTA buttons, the popup overlay, the palette and
roulette scrims, three identity banners, the user profile cover
art shadow) onto the tokens, with light/dark adaptation handled
by the existing prefers-color-scheme blocks instead of duplicated
inline. Two single-use Landing demo-focus values stay inline.
Diffstat (limited to 'src/styles/input.css')
| -rw-r--r-- | src/styles/input.css | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/styles/input.css b/src/styles/input.css index 41b8af06..a46c9b13 100644 --- a/src/styles/input.css +++ b/src/styles/input.css @@ -14,8 +14,7 @@ textarea { transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out; - /* box-shadow: 0 4px 30px var(--base01); */ - box-shadow: rgba(0, 0, 11, 0.1) 0px 7px 29px 0px; + box-shadow: var(--shadow-card); } input, @@ -110,8 +109,7 @@ button { transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out; - /* box-shadow: 0 4px 30px var(--base01); */ - box-shadow: rgba(0, 0, 11, 0.1) 0px 7px 29px 0px; + box-shadow: var(--shadow-card); } button:hover { |