diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-04-08 15:21:59 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-04-08 15:21:59 +0200 |
| commit | e30839a82f8379d678137591aa0c57f826e57587 (patch) | |
| tree | 7bfec72e66126e0d65895fc60d67e168dbc11288 | |
| parent | e6c6a4f5531579ab68c1ed913a2795dc58cd0517 (diff) | |
Add glitch drop-shadow filter to h1 and color semantic aliases
| -rw-r--r-- | src/Style/style.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Style/style.css b/src/Style/style.css index cd7f2df..6079ae1 100644 --- a/src/Style/style.css +++ b/src/Style/style.css @@ -24,6 +24,10 @@ --text-subtitle: #c9b6ff; --text-muted: #888; --text-black: #000; + + /* Semantic aliases */ + --color-white: #ffffff; + --color-primary: var(--magenta); } /* Fonts */ @@ -144,10 +148,17 @@ h1 { font-size: 42px; text-align: center; font-family: 'Argon Glow'; + font-weight: 700; + font-size: 60px; color: var(--magenta); text-shadow: 0 0 5px var(--magenta), 0 0 15px rgba(var(--magenta-rgb), 0.6); + filter: + url(#glitch) + drop-shadow(0 0 0.25rem #ffaaff7f) + drop-shadow(0 0 0.5rem #ff55ff4f) + drop-shadow(0 0 1rem #dd44dd5f); } /* Subtitle */ |
