@kiefer-tek/sophea-design-system 0.17.1 → 0.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/tokens/index.js
CHANGED
|
@@ -289,7 +289,7 @@ const motion$1 = {
|
|
|
289
289
|
const font = {
|
|
290
290
|
family: {
|
|
291
291
|
sans: {
|
|
292
|
-
$value: "Geist, Geist Variable, ui-sans-serif, system-ui, sans-serif",
|
|
292
|
+
$value: "Geist, Geist Variable, Inter, ui-sans-serif, system-ui, sans-serif",
|
|
293
293
|
$type: "fontFamily"
|
|
294
294
|
},
|
|
295
295
|
mono: {
|
package/package.json
CHANGED
|
@@ -13,11 +13,18 @@
|
|
|
13
13
|
* brand-navy CTAs, vivid brand-light selection. Quietly rounded corners,
|
|
14
14
|
* predictable hierarchy.
|
|
15
15
|
*
|
|
16
|
-
* Fonts: Geist Sans for everything (body, UI, headings), DM Mono for code
|
|
17
|
-
*
|
|
16
|
+
* Fonts: Geist Sans for everything (body, UI, headings), DM Mono for code,
|
|
17
|
+
* Inter as the Greek-coverage fallback (Geist has no Greek glyphs).
|
|
18
|
+
* All Google Fonts (next/font/google in production).
|
|
18
19
|
* ========================================================================== */
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
/* Geist has no Greek glyphs, so Greek text would otherwise fall back per-glyph
|
|
22
|
+
to an undesigned system font (visible glitches, e.g. "πρώτη" mis-spaced under
|
|
23
|
+
tracking-tight). Inter ships complete, well-matched Greek; loading it here
|
|
24
|
+
(Google Fonts splits per-script, so the Greek subset downloads only when
|
|
25
|
+
Greek is rendered) lets the "Inter" entry in the sans stack supply Greek
|
|
26
|
+
consistently while Geist keeps Latin. */
|
|
27
|
+
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap");
|
|
21
28
|
|
|
22
29
|
/* ---------- Light mode primitives ---------- */
|
|
23
30
|
:root {
|
|
@@ -763,8 +770,8 @@
|
|
|
763
770
|
* ========================================================================== */
|
|
764
771
|
:root {
|
|
765
772
|
--font-family-sans:
|
|
766
|
-
"Geist", "Geist Variable", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
|
|
767
|
-
"Helvetica Neue", Arial, sans-serif;
|
|
773
|
+
"Geist", "Geist Variable", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
|
|
774
|
+
Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
768
775
|
--font-family-mono:
|
|
769
776
|
"DM Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono",
|
|
770
777
|
monospace;
|
package/src/tokens/tokens.json
CHANGED