@godxjp/ui 13.16.0 → 13.16.1
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/foundation.css +10 -4
- package/package.json +1 -1
|
@@ -93,11 +93,17 @@
|
|
|
93
93
|
0 20px 25px -5px rgb(var(--shadow-color) / 0.1), 0 8px 10px -6px rgb(var(--shadow-color) / 0.1);
|
|
94
94
|
--shadow-2xl: 0 25px 50px -12px rgb(var(--shadow-color) / 0.25);
|
|
95
95
|
|
|
96
|
-
/*
|
|
97
|
-
*
|
|
96
|
+
/* Sans stack — script-aware per the international convention for mixed
|
|
97
|
+
* Latin/CJK UI: native Latin system fonts FIRST (clean, familiar English &
|
|
98
|
+
* Vietnamese on every OS), then the bundled "M PLUS 2" + Hiragino / Noto Sans JP
|
|
99
|
+
* as the CJK fallback. Browsers resolve fonts per-glyph, so Latin renders in the
|
|
100
|
+
* system sans while 日本語 falls through to M PLUS 2 (still shipped, so JP is
|
|
101
|
+
* consistent across machines). Listing M PLUS 2 first — its Latin glyphs are
|
|
102
|
+
* tuned to harmonise with kana, not for standalone English — made English read
|
|
103
|
+
* oddly; Latin-first fixes that without losing the bundled JP face. */
|
|
98
104
|
--font-family-sans:
|
|
99
|
-
|
|
100
|
-
|
|
105
|
+
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
|
|
106
|
+
system-ui, "M PLUS 2", "Hiragino Sans", "Noto Sans JP", "Be Vietnam Pro", sans-serif;
|
|
101
107
|
--font-family-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
|
|
102
108
|
/* ── Type scale — GOLDEN-RATIO modular scale (Ant/Tailwind model). ONE base + ONE ratio; every
|
|
103
109
|
* step is base × ratioⁿ, so the whole scale stays in golden proportion. `--font-size-ratio` is
|