web frontend for git repositories, written in Go git.pocka.jp/legit.git
3

Configure Feed

Select the types of activity you want to include in your feed.

Don't use system-ui for content texts

"system-ui" is for UI texts, not for content texts.
From now on, controls and labels use system-ui and content texts use
--font-content (sans-serif).

Shota FUJI (Jul 16, 2026, 7:52 PM +0900) 4c27b217 83c692e6

+14 -2
+13 -2
embed/static/global.css
··· 2 2 * SPDX-License-Identifier: MIT 3 3 */ 4 4 5 + @font-face { 6 + font-family: "Inter"; 7 + src: 8 + local("InterVariable"), 9 + local("Inter var"), 10 + local("Inter"); 11 + } 12 + 5 13 :root { 6 - --font-sans: ui-rounded, ui-sans-serif, system-ui, sans-serif; 14 + --font-content: Helvetica, sans-serif; 15 + --font-ui: Inter, system-ui, sans-serif; 7 16 --font-mono: ui-monospace, monospace; 8 17 9 18 --font-md: 1rem; ··· 78 87 } 79 88 80 89 body { 81 - font-family: var(--font-sans); 90 + font-family: var(--font-content); 82 91 font-size: var(--font-md); 83 92 font-weight: var(--font-regular); 84 93 display: grid; ··· 234 243 margin: calc(-1 * var(--space-lg)); 235 244 margin-block-start: 0; 236 245 border-block-start: 1px solid var(--color-border-subtle); 246 + font-family: var(--font-ui); 237 247 } 238 248 .repo-nav > a { 239 249 display: inline-flex; ··· 306 316 margin-block-end: var(--space-xxs); 307 317 font-size: var(--font-xs); 308 318 font-weight: var(--font-thick); 319 + font-family: var(--font-ui); 309 320 310 321 color: var(--color-fg-weak); 311 322 }
+1
embed/static/repo-tree-ref.css
··· 56 56 grid-area: mode; 57 57 font-size: var(--font-sm); 58 58 line-height: 1.1; 59 + font-family: var(--font-ui); 59 60 60 61 color: var(--color-fg-subtle); 61 62 }