diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-14 18:24:22 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-14 18:24:22 -0800 |
| commit | a7369274ba24298a0449865f147fc65253e992a2 (patch) | |
| tree | 365c748669990fca48052c6aa299e2e6da7afdb5 /frontend/src | |
| parent | f9b22750dced97a974005593909077d09b1129b9 (diff) | |
| download | neko-a7369274ba24298a0449865f147fc65253e992a2.tar.gz neko-a7369274ba24298a0449865f147fc65253e992a2.tar.bz2 neko-a7369274ba24298a0449865f147fc65253e992a2.zip | |
style: fix font theme application to body text
Diffstat (limited to 'frontend/src')
| -rw-r--r-- | frontend/src/index.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/src/index.css b/frontend/src/index.css index 6396633..c60ddb6 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -24,21 +24,25 @@ h5, .font-default { --font-body: Palatino, 'Palatino Linotype', 'Palatino LT STD', 'Book Antiqua', Georgia, serif; --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif; + font-family: var(--font-body); } .font-serif { --font-body: Georgia, 'Times New Roman', Times, serif; --font-heading: Georgia, 'Times New Roman', Times, serif; + font-family: var(--font-body); } .font-sans { --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; --font-heading: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + font-family: var(--font-body); } .font-mono { --font-body: Menlo, Monaco, Consolas, 'Courier New', monospace; --font-heading: Menlo, Monaco, Consolas, 'Courier New', monospace; + font-family: var(--font-body); } :root { |
