@thesage/ui 0.0.9 → 0.0.10

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.mjs CHANGED
@@ -399,8 +399,8 @@ var studioTokens = {
399
399
  }
400
400
  };
401
401
 
402
- // ../tokens/src/sage.ts
403
- var sageTokens = {
402
+ // ../tokens/src/terra.ts
403
+ var terraTokens = {
404
404
  light: {
405
405
  colors: {
406
406
  // Warm, earthy backgrounds
@@ -552,19 +552,19 @@ var sageTokens = {
552
552
  },
553
553
  typography: {
554
554
  heading: {
555
- fontFamily: "var(--font-sage-serif)",
555
+ fontFamily: "var(--font-terra-serif)",
556
556
  // Lora serif
557
557
  fontWeight: "600",
558
558
  letterSpacing: "-0.01em"
559
559
  },
560
560
  body: {
561
- fontFamily: "var(--font-sage-sans)",
561
+ fontFamily: "var(--font-terra-sans)",
562
562
  // Instrument Sans
563
563
  fontWeight: "400",
564
564
  letterSpacing: "0"
565
565
  },
566
566
  mono: {
567
- fontFamily: "var(--font-sage-mono)",
567
+ fontFamily: "var(--font-terra-mono)",
568
568
  fontWeight: "400",
569
569
  letterSpacing: "0"
570
570
  }
@@ -741,7 +741,7 @@ var fontFamilies = {
741
741
  mono: "Code blocks, technical content"
742
742
  }
743
743
  },
744
- sage: {
744
+ terra: {
745
745
  heading: "Lora",
746
746
  // Serif for elegance
747
747
  body: "Instrument Sans",
@@ -779,7 +779,7 @@ var fontLoadingConfig = {
779
779
  body: { family: "Manrope", weights: ["300", "400", "500", "600", "700", "800"] },
780
780
  mono: { family: "Fira Code", weights: ["400", "500", "600", "700"] }
781
781
  },
782
- sage: {
782
+ terra: {
783
783
  heading: { family: "Lora", weights: ["400", "500", "600", "700"] },
784
784
  body: { family: "Instrument Sans", weights: ["400", "500", "600", "700"] },
785
785
  mono: { family: "Fira Code", weights: ["400", "500", "600", "700"] }
@@ -2257,7 +2257,7 @@ function generateScale(fontTheme) {
2257
2257
  }
2258
2258
 
2259
2259
  // ../tokens/src/index.ts
2260
- var THEME_NAMES = ["studio", "sage", "volt"];
2260
+ var THEME_NAMES = ["studio", "terra", "volt"];
2261
2261
  var COLOR_MODES = ["light", "dark"];
2262
2262
  export {
2263
2263
  COLOR_MODES,
@@ -2301,7 +2301,6 @@ export {
2301
2301
  motion,
2302
2302
  primaryColorDerivations,
2303
2303
  rotateHue,
2304
- sageTokens,
2305
2304
  secondaryColorDerivations,
2306
2305
  semanticLetterSpacing,
2307
2306
  semanticLineHeights,
@@ -2310,6 +2309,7 @@ export {
2310
2309
  spacing,
2311
2310
  studioTokens,
2312
2311
  syntaxColors,
2312
+ terraTokens,
2313
2313
  tokenDependencyGraph,
2314
2314
  typePresets,
2315
2315
  typography,