@almadar/ui 2.24.4 → 2.24.8

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.
@@ -2614,28 +2614,28 @@ var marginYStyles = {
2614
2614
  };
2615
2615
  var bgStyles = {
2616
2616
  transparent: "bg-transparent",
2617
- primary: "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]",
2618
- secondary: "bg-[var(--color-secondary)] text-[var(--color-secondary-foreground)]",
2619
- muted: "bg-[var(--color-muted)] text-[var(--color-foreground)]",
2620
- accent: "bg-[var(--color-accent)] text-[var(--color-accent-foreground)]",
2621
- surface: "bg-[var(--color-card)]",
2622
- overlay: "bg-[var(--color-card)]/80 backdrop-blur-sm"
2617
+ primary: "bg-primary text-primary-foreground",
2618
+ secondary: "bg-secondary text-secondary-foreground",
2619
+ muted: "bg-muted text-foreground",
2620
+ accent: "bg-accent text-accent-foreground",
2621
+ surface: "bg-card",
2622
+ overlay: "bg-card/80 backdrop-blur-sm"
2623
2623
  };
2624
2624
  var roundedStyles = {
2625
2625
  none: "rounded-none",
2626
- sm: "rounded-[var(--radius-sm)]",
2627
- md: "rounded-[var(--radius-md)]",
2628
- lg: "rounded-[var(--radius-lg)]",
2629
- xl: "rounded-[var(--radius-xl)]",
2630
- "2xl": "rounded-[var(--radius-xl)]",
2631
- full: "rounded-[var(--radius-full)]"
2626
+ sm: "rounded-sm",
2627
+ md: "rounded-md",
2628
+ lg: "rounded-lg",
2629
+ xl: "rounded-xl",
2630
+ "2xl": "rounded-xl",
2631
+ full: "rounded-full"
2632
2632
  };
2633
2633
  var shadowStyles = {
2634
2634
  none: "shadow-none",
2635
- sm: "shadow-[var(--shadow-sm)]",
2636
- md: "shadow-[var(--shadow-main)]",
2637
- lg: "shadow-[var(--shadow-lg)]",
2638
- xl: "shadow-[var(--shadow-lg)]"
2635
+ sm: "shadow-sm",
2636
+ md: "shadow",
2637
+ lg: "shadow-lg",
2638
+ xl: "shadow-lg"
2639
2639
  };
2640
2640
  var displayStyles = {
2641
2641
  block: "block",
@@ -2723,7 +2723,7 @@ var Box = React5.forwardRef(
2723
2723
  // Background
2724
2724
  bgStyles[bg],
2725
2725
  // Border - uses theme variables
2726
- border && "border-[length:var(--border-width)] border-[var(--color-border)]",
2726
+ border && "border-[length:var(--border-width)] border-border",
2727
2727
  // Rounded
2728
2728
  roundedStyles[rounded],
2729
2729
  // Shadow
@@ -2830,30 +2830,30 @@ var Stack = ({
2830
2830
  var VStack = (props) => /* @__PURE__ */ jsx(Stack, { direction: "vertical", ...props });
2831
2831
  var HStack = (props) => /* @__PURE__ */ jsx(Stack, { direction: "horizontal", ...props });
2832
2832
  var variantStyles = {
2833
- h1: "text-4xl font-bold tracking-tight text-[var(--color-foreground)]",
2834
- h2: "text-3xl font-bold tracking-tight text-[var(--color-foreground)]",
2835
- h3: "text-2xl font-bold text-[var(--color-foreground)]",
2836
- h4: "text-xl font-bold text-[var(--color-foreground)]",
2837
- h5: "text-lg font-bold text-[var(--color-foreground)]",
2838
- h6: "text-base font-bold text-[var(--color-foreground)]",
2839
- heading: "text-2xl font-bold text-[var(--color-foreground)]",
2840
- subheading: "text-lg font-semibold text-[var(--color-foreground)]",
2841
- body1: "text-base font-normal text-[var(--color-foreground)]",
2842
- body2: "text-sm font-normal text-[var(--color-foreground)]",
2843
- body: "text-base font-normal text-[var(--color-foreground)]",
2844
- caption: "text-xs font-normal text-[var(--color-muted-foreground)]",
2845
- overline: "text-xs uppercase tracking-wide font-bold text-[var(--color-muted-foreground)]",
2846
- small: "text-sm font-normal text-[var(--color-foreground)]",
2847
- large: "text-lg font-medium text-[var(--color-foreground)]",
2848
- label: "text-sm font-medium text-[var(--color-foreground)]"
2833
+ h1: "text-4xl font-bold tracking-tight text-foreground",
2834
+ h2: "text-3xl font-bold tracking-tight text-foreground",
2835
+ h3: "text-2xl font-bold text-foreground",
2836
+ h4: "text-xl font-bold text-foreground",
2837
+ h5: "text-lg font-bold text-foreground",
2838
+ h6: "text-base font-bold text-foreground",
2839
+ heading: "text-2xl font-bold text-foreground",
2840
+ subheading: "text-lg font-semibold text-foreground",
2841
+ body1: "text-base font-normal text-foreground",
2842
+ body2: "text-sm font-normal text-foreground",
2843
+ body: "text-base font-normal text-foreground",
2844
+ caption: "text-xs font-normal text-muted-foreground",
2845
+ overline: "text-xs uppercase tracking-wide font-bold text-muted-foreground",
2846
+ small: "text-sm font-normal text-foreground",
2847
+ large: "text-lg font-medium text-foreground",
2848
+ label: "text-sm font-medium text-foreground"
2849
2849
  };
2850
2850
  var colorStyles = {
2851
- primary: "text-[var(--color-foreground)]",
2852
- secondary: "text-[var(--color-muted-foreground)]",
2853
- muted: "text-[var(--color-muted-foreground)]",
2854
- error: "text-[var(--color-error)]",
2855
- success: "text-[var(--color-success)]",
2856
- warning: "text-[var(--color-warning)]",
2851
+ primary: "text-foreground",
2852
+ secondary: "text-muted-foreground",
2853
+ muted: "text-muted-foreground",
2854
+ error: "text-error",
2855
+ success: "text-success",
2856
+ warning: "text-warning",
2857
2857
  inherit: "text-inherit"
2858
2858
  };
2859
2859
  var weightStyles = {
@@ -3016,49 +3016,49 @@ var Icon = ({
3016
3016
  Icon.displayName = "Icon";
3017
3017
  var variantStyles2 = {
3018
3018
  primary: [
3019
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]",
3020
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3021
- "shadow-[var(--shadow-sm)]",
3022
- "hover:bg-[var(--color-primary-hover)] hover:shadow-[var(--shadow-hover)]",
3023
- "active:scale-[var(--active-scale)] active:shadow-[var(--shadow-active)]"
3019
+ "bg-primary text-primary-foreground",
3020
+ "border-none",
3021
+ "shadow-sm",
3022
+ "hover:bg-primary-hover hover:shadow-lg",
3023
+ "active:scale-[var(--active-scale)] active:shadow-sm"
3024
3024
  ].join(" "),
3025
3025
  secondary: [
3026
- "bg-transparent text-[var(--color-accent)]",
3027
- "border-[length:var(--border-width)] border-[var(--color-accent)]",
3028
- "hover:bg-[var(--color-accent)] hover:text-white",
3026
+ "bg-transparent text-accent",
3027
+ "border border-accent",
3028
+ "hover:bg-accent hover:text-white hover:border-accent",
3029
3029
  "active:scale-[var(--active-scale)]"
3030
3030
  ].join(" "),
3031
3031
  ghost: [
3032
- "bg-transparent text-[var(--color-muted-foreground)]",
3033
- "hover:text-[var(--color-foreground)] hover:bg-[var(--color-muted)]",
3032
+ "bg-transparent text-muted-foreground",
3033
+ "hover:text-foreground hover:bg-muted",
3034
3034
  "active:scale-[var(--active-scale)]"
3035
3035
  ].join(" "),
3036
3036
  danger: [
3037
- "bg-[var(--color-surface)] text-[var(--color-error)]",
3038
- "border-[length:var(--border-width)] border-[var(--color-error)]",
3039
- "shadow-[var(--shadow-sm)]",
3040
- "hover:bg-[var(--color-error)] hover:text-[var(--color-error-foreground)] hover:shadow-[var(--shadow-hover)]",
3041
- "active:scale-[var(--active-scale)] active:shadow-[var(--shadow-active)]"
3037
+ "bg-surface text-error",
3038
+ "border-[length:var(--border-width)] border-error",
3039
+ "shadow-sm",
3040
+ "hover:bg-error hover:text-error-foreground hover:shadow-lg",
3041
+ "active:scale-[var(--active-scale)] active:shadow-sm"
3042
3042
  ].join(" "),
3043
3043
  success: [
3044
- "bg-[var(--color-surface)] text-[var(--color-success)]",
3045
- "border-[length:var(--border-width)] border-[var(--color-success)]",
3046
- "shadow-[var(--shadow-sm)]",
3047
- "hover:bg-[var(--color-success)] hover:text-[var(--color-success-foreground)] hover:shadow-[var(--shadow-hover)]",
3048
- "active:scale-[var(--active-scale)] active:shadow-[var(--shadow-active)]"
3044
+ "bg-surface text-success",
3045
+ "border-[length:var(--border-width)] border-success",
3046
+ "shadow-sm",
3047
+ "hover:bg-success hover:text-success-foreground hover:shadow-lg",
3048
+ "active:scale-[var(--active-scale)] active:shadow-sm"
3049
3049
  ].join(" "),
3050
3050
  warning: [
3051
- "bg-[var(--color-surface)] text-[var(--color-warning)]",
3052
- "border-[length:var(--border-width)] border-[var(--color-warning)]",
3053
- "shadow-[var(--shadow-sm)]",
3054
- "hover:bg-[var(--color-warning)] hover:text-[var(--color-warning-foreground)] hover:shadow-[var(--shadow-hover)]",
3055
- "active:scale-[var(--active-scale)] active:shadow-[var(--shadow-active)]"
3051
+ "bg-surface text-warning",
3052
+ "border-[length:var(--border-width)] border-warning",
3053
+ "shadow-sm",
3054
+ "hover:bg-warning hover:text-warning-foreground hover:shadow-lg",
3055
+ "active:scale-[var(--active-scale)] active:shadow-sm"
3056
3056
  ].join(" "),
3057
3057
  // "default" is an alias for secondary
3058
3058
  default: [
3059
- "bg-[var(--color-secondary)] text-[var(--color-secondary-foreground)]",
3060
- "border-[length:var(--border-width-thin)] border-[var(--color-border)]",
3061
- "hover:bg-[var(--color-secondary-hover)]",
3059
+ "bg-secondary text-secondary-foreground",
3060
+ "border-[length:var(--border-width-thin)] border-border",
3061
+ "hover:bg-secondary-hover",
3062
3062
  "active:scale-[var(--active-scale)]"
3063
3063
  ].join(" ")
3064
3064
  };
@@ -3129,9 +3129,10 @@ var Button = React5.forwardRef(
3129
3129
  className: cn(
3130
3130
  "inline-flex items-center justify-center gap-2",
3131
3131
  "font-[var(--font-weight-medium)]",
3132
- "rounded-[var(--radius-sm)]",
3132
+ "rounded-sm",
3133
+ "cursor-pointer",
3133
3134
  "transition-all duration-[var(--transition-normal)]",
3134
- "focus:outline-none focus:ring-[length:var(--focus-ring-width)] focus:ring-[var(--color-ring)] focus:ring-offset-[length:var(--focus-ring-offset)]",
3135
+ "focus:outline-none focus:ring-[length:var(--focus-ring-width)] focus:ring-ring focus:ring-offset-[length:var(--focus-ring-offset)]",
3135
3136
  "disabled:opacity-50 disabled:cursor-not-allowed",
3136
3137
  variantStyles2[variant],
3137
3138
  sizeStyles2[size],
@@ -3152,34 +3153,34 @@ var Button = React5.forwardRef(
3152
3153
  Button.displayName = "Button";
3153
3154
  var variantStyles3 = {
3154
3155
  default: [
3155
- "bg-[var(--color-muted)] text-[var(--color-foreground)]",
3156
- "border-[length:var(--border-width-thin)] border-[var(--color-border)]"
3156
+ "bg-muted text-foreground",
3157
+ "border-[length:var(--border-width-thin)] border-border"
3157
3158
  ].join(" "),
3158
- primary: "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]",
3159
- secondary: "bg-[var(--color-secondary)] text-[var(--color-secondary-foreground)]",
3159
+ primary: "bg-primary text-primary-foreground",
3160
+ secondary: "bg-secondary text-secondary-foreground",
3160
3161
  success: [
3161
- "bg-[var(--color-surface)] text-[var(--color-success)]",
3162
- "border-[length:var(--border-width)] border-[var(--color-success)]"
3162
+ "bg-surface text-success",
3163
+ "border-[length:var(--border-width)] border-success"
3163
3164
  ].join(" "),
3164
3165
  warning: [
3165
- "bg-[var(--color-surface)] text-[var(--color-warning)]",
3166
- "border-[length:var(--border-width)] border-[var(--color-warning)]"
3166
+ "bg-surface text-warning",
3167
+ "border-[length:var(--border-width)] border-warning"
3167
3168
  ].join(" "),
3168
3169
  danger: [
3169
- "bg-[var(--color-surface)] text-[var(--color-error)]",
3170
- "border-[length:var(--border-width)] border-[var(--color-error)]"
3170
+ "bg-surface text-error",
3171
+ "border-[length:var(--border-width)] border-error"
3171
3172
  ].join(" "),
3172
3173
  error: [
3173
- "bg-[var(--color-surface)] text-[var(--color-error)]",
3174
- "border-[length:var(--border-width)] border-[var(--color-error)]"
3174
+ "bg-surface text-error",
3175
+ "border-[length:var(--border-width)] border-error"
3175
3176
  ].join(" "),
3176
3177
  info: [
3177
- "bg-[var(--color-surface)] text-[var(--color-info)]",
3178
- "border-[length:var(--border-width)] border-[var(--color-info)]"
3178
+ "bg-surface text-info",
3179
+ "border-[length:var(--border-width)] border-info"
3179
3180
  ].join(" "),
3180
3181
  neutral: [
3181
- "bg-[var(--color-muted)] text-[var(--color-muted-foreground)]",
3182
- "border-[length:var(--border-width-thin)] border-[var(--color-border)]"
3182
+ "bg-muted text-muted-foreground",
3183
+ "border-[length:var(--border-width-thin)] border-border"
3183
3184
  ].join(" ")
3184
3185
  };
3185
3186
  var sizeStyles3 = {
@@ -3199,7 +3200,7 @@ var Badge = React5.forwardRef(
3199
3200
  {
3200
3201
  ref,
3201
3202
  className: cn(
3202
- "inline-flex items-center gap-1 font-bold rounded-[var(--radius-sm)]",
3203
+ "inline-flex items-center gap-1 font-bold rounded-sm",
3203
3204
  variantStyles3[variant],
3204
3205
  sizeStyles3[size],
3205
3206
  className
@@ -3216,32 +3217,34 @@ var Badge = React5.forwardRef(
3216
3217
  Badge.displayName = "Badge";
3217
3218
  var variantStyles4 = {
3218
3219
  default: [
3219
- "bg-[var(--color-card)] border-none",
3220
+ "bg-card",
3221
+ "border-[length:var(--border-width)] border-border",
3222
+ "shadow-sm",
3220
3223
  "transition-all duration-[var(--transition-normal)]",
3221
- "hover:shadow-[var(--shadow-hover)] hover:-translate-y-0.5"
3224
+ "hover:shadow-lg hover:-translate-y-0.5"
3222
3225
  ].join(" "),
3223
3226
  bordered: [
3224
- "bg-[var(--color-card)]",
3225
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3226
- "shadow-none",
3227
+ "bg-card",
3228
+ "border-[length:var(--border-width)] border-border",
3229
+ "shadow-sm",
3227
3230
  "transition-all duration-[var(--transition-normal)]",
3228
- "hover:shadow-[var(--shadow-hover)] hover:-translate-y-0.5"
3231
+ "hover:shadow-lg hover:-translate-y-0.5"
3229
3232
  ].join(" "),
3230
3233
  elevated: [
3231
- "bg-[var(--color-card)]",
3232
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3233
- "shadow-[var(--shadow-main)]",
3234
+ "bg-card",
3235
+ "border-[length:var(--border-width)] border-border",
3236
+ "shadow",
3234
3237
  "transition-all duration-[var(--transition-normal)]",
3235
- "hover:shadow-[var(--shadow-hover)] hover:-translate-y-0.5"
3238
+ "hover:shadow-lg hover:-translate-y-0.5"
3236
3239
  ].join(" "),
3237
3240
  // Interactive variant with theme-specific hover effects
3238
3241
  interactive: [
3239
- "bg-[var(--color-card)]",
3240
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3241
- "shadow-[var(--shadow-main)]",
3242
+ "bg-card",
3243
+ "border-[length:var(--border-width)] border-border",
3244
+ "shadow",
3242
3245
  "cursor-pointer",
3243
3246
  "transition-all duration-[var(--transition-normal)]",
3244
- "hover:shadow-[var(--shadow-hover)]"
3247
+ "hover:shadow-lg"
3245
3248
  ].join(" ")
3246
3249
  };
3247
3250
  var paddingStyles2 = {
@@ -3252,9 +3255,9 @@ var paddingStyles2 = {
3252
3255
  };
3253
3256
  var shadowStyles2 = {
3254
3257
  none: "shadow-none",
3255
- sm: "shadow-[var(--shadow-sm)]",
3256
- md: "shadow-[var(--shadow-main)]",
3257
- lg: "shadow-[var(--shadow-lg)]"
3258
+ sm: "shadow-sm",
3259
+ md: "shadow",
3260
+ lg: "shadow-lg"
3258
3261
  };
3259
3262
  var Card = React5.forwardRef(
3260
3263
  ({
@@ -3272,7 +3275,7 @@ var Card = React5.forwardRef(
3272
3275
  {
3273
3276
  ref,
3274
3277
  className: cn(
3275
- "rounded-[var(--radius-md)]",
3278
+ "rounded-md",
3276
3279
  "transition-all duration-[var(--transition-normal)]",
3277
3280
  variantStyles4[variant],
3278
3281
  paddingStyles2[padding],
@@ -3282,8 +3285,8 @@ var Card = React5.forwardRef(
3282
3285
  ...props,
3283
3286
  children: [
3284
3287
  (title || subtitle) && /* @__PURE__ */ jsxs("div", { className: "mb-4", children: [
3285
- title && /* @__PURE__ */ jsx("h3", { className: "text-lg text-[var(--color-card-foreground)] font-[var(--font-weight-bold)]", children: title }),
3286
- subtitle && /* @__PURE__ */ jsx("p", { className: "text-sm text-[var(--color-muted-foreground)] mt-1", children: subtitle })
3288
+ title && /* @__PURE__ */ jsx("h3", { className: "text-lg text-card-foreground font-[var(--font-weight-bold)]", children: title }),
3289
+ subtitle && /* @__PURE__ */ jsx("p", { className: "text-sm text-muted-foreground mt-1", children: subtitle })
3287
3290
  ] }),
3288
3291
  children
3289
3292
  ]
@@ -3299,7 +3302,7 @@ var CardTitle = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__
3299
3302
  {
3300
3303
  ref,
3301
3304
  className: cn(
3302
- "text-lg text-[var(--color-card-foreground)]",
3305
+ "text-lg text-card-foreground",
3303
3306
  "font-[var(--font-weight-bold)]",
3304
3307
  className
3305
3308
  ),
@@ -3336,7 +3339,7 @@ var Divider = ({
3336
3339
  "div",
3337
3340
  {
3338
3341
  className: cn(
3339
- "w-0 h-full border-l border-[var(--color-border)]",
3342
+ "w-0 h-full border-l border-border",
3340
3343
  variantStyles5[variant],
3341
3344
  className
3342
3345
  ),
@@ -3357,17 +3360,17 @@ var Divider = ({
3357
3360
  "div",
3358
3361
  {
3359
3362
  className: cn(
3360
- "flex-1 h-0 border-t border-[var(--color-border)]",
3363
+ "flex-1 h-0 border-t border-border",
3361
3364
  variantStyles5[variant]
3362
3365
  )
3363
3366
  }
3364
3367
  ),
3365
- /* @__PURE__ */ jsx("span", { className: "text-sm text-[var(--color-foreground)] font-bold uppercase tracking-wide", children: label }),
3368
+ /* @__PURE__ */ jsx("span", { className: "text-sm text-foreground font-bold uppercase tracking-wide", children: label }),
3366
3369
  /* @__PURE__ */ jsx(
3367
3370
  "div",
3368
3371
  {
3369
3372
  className: cn(
3370
- "flex-1 h-0 border-t border-[var(--color-border)]",
3373
+ "flex-1 h-0 border-t border-border",
3371
3374
  variantStyles5[variant]
3372
3375
  )
3373
3376
  }
@@ -3380,7 +3383,7 @@ var Divider = ({
3380
3383
  "div",
3381
3384
  {
3382
3385
  className: cn(
3383
- "w-full h-0 border-t border-[var(--color-border)] my-4",
3386
+ "w-full h-0 border-t border-border my-4",
3384
3387
  variantStyles5[variant],
3385
3388
  className
3386
3389
  ),
@@ -3455,8 +3458,8 @@ var Spacer = ({
3455
3458
  };
3456
3459
  var backgroundClasses = {
3457
3460
  default: "",
3458
- alt: "bg-[var(--color-surface)]",
3459
- dark: "bg-[var(--color-foreground)] text-[var(--color-background)]",
3461
+ alt: "bg-surface",
3462
+ dark: "bg-foreground text-background",
3460
3463
  gradient: [
3461
3464
  "bg-gradient-to-b",
3462
3465
  "from-[var(--color-primary)]/5",
@@ -3505,9 +3508,9 @@ var InstallBox = ({
3505
3508
  Box,
3506
3509
  {
3507
3510
  className: cn(
3508
- "bg-[var(--color-foreground)]",
3509
- "rounded-[var(--radius-md)]",
3510
- "border-[length:var(--border-width)] border-[var(--color-border)]"
3511
+ "bg-foreground",
3512
+ "rounded-md",
3513
+ "border-[length:var(--border-width)] border-border"
3511
3514
  ),
3512
3515
  padding: "md",
3513
3516
  children: /* @__PURE__ */ jsxs(HStack, { gap: "md", align: "center", children: [
@@ -3515,7 +3518,7 @@ var InstallBox = ({
3515
3518
  Typography,
3516
3519
  {
3517
3520
  variant: "body2",
3518
- className: "font-mono flex-1 min-w-0 text-[var(--color-background)] select-all",
3521
+ className: "font-mono flex-1 min-w-0 text-background select-all",
3519
3522
  truncate: true,
3520
3523
  children: command
3521
3524
  }
@@ -3526,7 +3529,7 @@ var InstallBox = ({
3526
3529
  variant: "ghost",
3527
3530
  size: "md",
3528
3531
  onClick: handleCopy,
3529
- className: "flex-shrink-0 text-[var(--color-background)] hover:text-[var(--color-background)]",
3532
+ className: "flex-shrink-0 text-background hover:text-background",
3530
3533
  children: copied ? "Copied!" : "Copy"
3531
3534
  }
3532
3535
  )
@@ -3545,7 +3548,7 @@ var MarketingImage = ({ src, alt, className }) => /* @__PURE__ */ jsx(
3545
3548
  Box,
3546
3549
  {
3547
3550
  className: cn(
3548
- "overflow-hidden rounded-[var(--radius-lg)] bg-cover bg-center bg-no-repeat",
3551
+ "overflow-hidden rounded-lg bg-cover bg-center bg-no-repeat",
3549
3552
  className
3550
3553
  ),
3551
3554
  style: { backgroundImage: `url(${src})` },
@@ -3580,7 +3583,7 @@ var HeroSection = ({
3580
3583
  align: isCenter ? "center" : "left",
3581
3584
  className: cn(
3582
3585
  "max-w-3xl leading-tight",
3583
- isDark && "text-[var(--color-background)]"
3586
+ isDark && "text-background"
3584
3587
  ),
3585
3588
  children: [
3586
3589
  title,
@@ -3590,7 +3593,7 @@ var HeroSection = ({
3590
3593
  {
3591
3594
  as: "span",
3592
3595
  variant: "h1",
3593
- className: "text-[var(--color-primary)]",
3596
+ className: "text-primary",
3594
3597
  children: titleAccent
3595
3598
  }
3596
3599
  )
@@ -3603,7 +3606,7 @@ var HeroSection = ({
3603
3606
  align: isCenter ? "center" : "left",
3604
3607
  className: cn(
3605
3608
  "max-w-3xl leading-tight",
3606
- isDark && "text-[var(--color-background)]"
3609
+ isDark && "text-background"
3607
3610
  ),
3608
3611
  children: title
3609
3612
  }
@@ -3717,10 +3720,10 @@ var CTABanner = ({
3717
3720
  {
3718
3721
  className: cn(
3719
3722
  "py-16",
3720
- background === "alt" && "bg-[var(--color-surface)]",
3721
- background === "dark" && "bg-[var(--color-surface)]",
3722
- background === "gradient" && "bg-[var(--color-surface)]",
3723
- background === "primary" && "bg-[var(--color-surface)]",
3723
+ background === "alt" && "bg-surface",
3724
+ background === "dark" && "bg-surface",
3725
+ background === "gradient" && "bg-surface",
3726
+ background === "primary" && "bg-surface",
3724
3727
  className
3725
3728
  ),
3726
3729
  children: /* @__PURE__ */ jsxs(
@@ -3787,7 +3790,7 @@ var FeatureCard = ({
3787
3790
  {
3788
3791
  name: icon,
3789
3792
  size: iconSizeMap[size],
3790
- className: "text-[var(--color-accent,#06b6d4)]"
3793
+ className: "text-accent"
3791
3794
  }
3792
3795
  );
3793
3796
  }
@@ -3804,7 +3807,7 @@ var FeatureCard = ({
3804
3807
  variant,
3805
3808
  padding: size,
3806
3809
  className: cn(
3807
- variant === "interactive" && "hover:border-[var(--color-primary)]",
3810
+ variant === "interactive" && "hover:border-primary",
3808
3811
  className
3809
3812
  ),
3810
3813
  onClick: variant === "interactive" && href ? handleLinkClick : void 0,
@@ -3818,7 +3821,7 @@ var FeatureCard = ({
3818
3821
  variant: "ghost",
3819
3822
  size: "sm",
3820
3823
  onClick: handleLinkClick,
3821
- className: "text-[var(--color-primary)] -ml-2",
3824
+ className: "text-primary -ml-2",
3822
3825
  children: linkLabel
3823
3826
  }
3824
3827
  )
@@ -3906,10 +3909,10 @@ var PricingCard = ({
3906
3909
  "flex flex-col h-full",
3907
3910
  "hover:-translate-y-1 transition-all",
3908
3911
  highlighted && [
3909
- "border-[length:2px] border-[var(--color-primary)]",
3910
- "shadow-[var(--shadow-lg)]",
3912
+ "border-[length:2px] border-primary",
3913
+ "shadow-lg",
3911
3914
  "scale-[1.05]",
3912
- "ring-2 ring-[var(--color-primary)]"
3915
+ "ring-2 ring-primary"
3913
3916
  ],
3914
3917
  className
3915
3918
  ),
@@ -3920,7 +3923,7 @@ var PricingCard = ({
3920
3923
  Typography,
3921
3924
  {
3922
3925
  variant: "h2",
3923
- className: "text-[var(--color-primary)] font-bold",
3926
+ className: "text-primary font-bold",
3924
3927
  children: price
3925
3928
  }
3926
3929
  ),
@@ -3932,7 +3935,7 @@ var PricingCard = ({
3932
3935
  {
3933
3936
  icon: Check,
3934
3937
  size: "sm",
3935
- className: "flex-shrink-0 text-[var(--color-success)]"
3938
+ className: "flex-shrink-0 text-success"
3936
3939
  }
3937
3940
  ),
3938
3941
  /* @__PURE__ */ jsx(Typography, { variant: "body2", children: feature })
@@ -3987,7 +3990,7 @@ var SplitSection = ({
3987
3990
  {
3988
3991
  name: "check",
3989
3992
  size: "sm",
3990
- className: "text-[var(--color-primary)] flex-shrink-0 mt-0.5"
3993
+ className: "text-primary flex-shrink-0 mt-0.5"
3991
3994
  }
3992
3995
  ),
3993
3996
  /* @__PURE__ */ jsx(Typography, { variant: "body2", children: bullet })
@@ -3997,7 +4000,7 @@ var SplitSection = ({
3997
4000
  Box,
3998
4001
  {
3999
4002
  className: cn(
4000
- "flex-1 min-w-0 min-h-[240px] rounded-[var(--radius-md)]",
4003
+ "flex-1 min-w-0 min-h-[240px] rounded-md",
4001
4004
  "bg-cover bg-center"
4002
4005
  ),
4003
4006
  style: { backgroundImage: `url(${image.src})` },
@@ -4011,7 +4014,7 @@ var SplitSection = ({
4011
4014
  {
4012
4015
  className: cn(
4013
4016
  "w-full",
4014
- background === "alt" ? "bg-[var(--color-muted)]" : "bg-[var(--color-background)]",
4017
+ background === "alt" ? "bg-muted" : "bg-background",
4015
4018
  className
4016
4019
  ),
4017
4020
  padding: "lg",
@@ -4031,9 +4034,9 @@ var StepCircle = ({ step, index }) => {
4031
4034
  className: cn(
4032
4035
  "w-10 h-10 rounded-full flex-shrink-0",
4033
4036
  "flex items-center justify-center",
4034
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]"
4037
+ "bg-primary text-primary-foreground"
4035
4038
  ),
4036
- children: /* @__PURE__ */ jsx(Icon, { name: step.icon, size: "sm", className: "text-[var(--color-primary-foreground)]" })
4039
+ children: /* @__PURE__ */ jsx(Icon, { name: step.icon, size: "sm", className: "text-primary-foreground" })
4037
4040
  }
4038
4041
  );
4039
4042
  }
@@ -4043,9 +4046,9 @@ var StepCircle = ({ step, index }) => {
4043
4046
  className: cn(
4044
4047
  "w-10 h-10 rounded-full flex-shrink-0",
4045
4048
  "flex items-center justify-center",
4046
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]"
4049
+ "bg-primary text-primary-foreground"
4047
4050
  ),
4048
- children: /* @__PURE__ */ jsx("span", { className: "font-semibold text-sm text-[var(--color-primary-foreground)] leading-none", children: step.number ?? index + 1 })
4051
+ children: /* @__PURE__ */ jsx("span", { className: "font-semibold text-sm text-primary-foreground leading-none", children: step.number ?? index + 1 })
4049
4052
  }
4050
4053
  );
4051
4054
  };
@@ -4060,7 +4063,7 @@ var StepFlow = ({
4060
4063
  return /* @__PURE__ */ jsx(VStack, { gap: "none", className: cn("w-full", className), children: steps.map((step, index) => /* @__PURE__ */ jsx(React5.Fragment, { children: /* @__PURE__ */ jsxs(HStack, { gap: "md", align: "start", className: "w-full", children: [
4061
4064
  /* @__PURE__ */ jsxs(VStack, { gap: "none", align: "center", children: [
4062
4065
  /* @__PURE__ */ jsx(StepCircle, { step, index }),
4063
- showConnectors && index < steps.length - 1 && /* @__PURE__ */ jsx(Box, { className: "w-px h-8 bg-[var(--color-border)]" })
4066
+ showConnectors && index < steps.length - 1 && /* @__PURE__ */ jsx(Box, { className: "w-px h-8 bg-border" })
4064
4067
  ] }),
4065
4068
  /* @__PURE__ */ jsxs(VStack, { gap: "xs", className: "flex-1 pt-1", children: [
4066
4069
  /* @__PURE__ */ jsx(Typography, { variant: "h4", children: step.title }),
@@ -4088,7 +4091,7 @@ var StatsGrid = ({
4088
4091
  Typography,
4089
4092
  {
4090
4093
  variant: "h2",
4091
- className: "font-bold text-[var(--color-primary)]",
4094
+ className: "font-bold text-primary",
4092
4095
  children: stat.value
4093
4096
  }
4094
4097
  ),
@@ -4203,7 +4206,7 @@ var ShowcaseCard = ({
4203
4206
  {
4204
4207
  className: cn(
4205
4208
  "w-full aspect-video bg-cover bg-center",
4206
- "rounded-t-[var(--radius-md)]"
4209
+ "rounded-t-md"
4207
4210
  ),
4208
4211
  style: { backgroundImage: `url(${image.src})` },
4209
4212
  role: "img",
@@ -4242,10 +4245,10 @@ var statusSizeClasses = {
4242
4245
  xl: "w-4 h-4"
4243
4246
  };
4244
4247
  var statusClasses = {
4245
- online: "bg-[var(--color-success)]",
4246
- offline: "bg-[var(--color-muted-foreground)]",
4247
- away: "bg-[var(--color-warning)]",
4248
- busy: "bg-[var(--color-error)]"
4248
+ online: "bg-success",
4249
+ offline: "bg-muted-foreground",
4250
+ away: "bg-warning",
4251
+ busy: "bg-error"
4249
4252
  };
4250
4253
  var badgeSizeClasses = {
4251
4254
  xs: "w-3 h-3 text-[8px]",
@@ -4280,7 +4283,7 @@ var Avatar = ({
4280
4283
  const hasImage = !!src;
4281
4284
  const hasInitials = !!initials;
4282
4285
  const hasIcon = !!Icon2;
4283
- const getInitialsBackground = () => "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]";
4286
+ const getInitialsBackground = () => "bg-primary text-primary-foreground";
4284
4287
  const isClickable = action || onClick;
4285
4288
  const handleClick = () => {
4286
4289
  if (action) {
@@ -4294,7 +4297,7 @@ var Avatar = ({
4294
4297
  {
4295
4298
  className: cn(
4296
4299
  "relative inline-flex items-center justify-center",
4297
- "bg-[var(--color-muted)] border-[length:var(--border-width)] border-[var(--color-border)]",
4300
+ "bg-muted border-[length:var(--border-width)] border-border",
4298
4301
  "overflow-hidden",
4299
4302
  sizeClasses2[size],
4300
4303
  isClickable && "cursor-pointer hover:bg-[var(--color-surface-hover)] transition-colors",
@@ -4327,7 +4330,7 @@ var Avatar = ({
4327
4330
  Icon2,
4328
4331
  {
4329
4332
  className: cn(
4330
- "text-[var(--color-foreground)]",
4333
+ "text-foreground",
4331
4334
  iconSizeClasses[size]
4332
4335
  )
4333
4336
  }
@@ -4335,7 +4338,7 @@ var Avatar = ({
4335
4338
  User,
4336
4339
  {
4337
4340
  className: cn(
4338
- "text-[var(--color-foreground)]",
4341
+ "text-foreground",
4339
4342
  iconSizeClasses[size]
4340
4343
  )
4341
4344
  }
@@ -4346,7 +4349,7 @@ var Avatar = ({
4346
4349
  "div",
4347
4350
  {
4348
4351
  className: cn(
4349
- "absolute bottom-0 right-0 border-2 border-[var(--color-card)]",
4352
+ "absolute bottom-0 right-0 border-2 border-card",
4350
4353
  statusClasses[status],
4351
4354
  statusSizeClasses[size]
4352
4355
  ),
@@ -4358,8 +4361,8 @@ var Avatar = ({
4358
4361
  {
4359
4362
  className: cn(
4360
4363
  "absolute -top-1 -right-1 flex items-center justify-center",
4361
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)] font-bold",
4362
- "border-2 border-[var(--color-card)]",
4364
+ "bg-primary text-primary-foreground font-bold",
4365
+ "border-2 border-card",
4363
4366
  badgeSizeClasses[size]
4364
4367
  ),
4365
4368
  "aria-label": `Badge: ${badge}`,
@@ -4425,7 +4428,7 @@ var CaseStudyCard = ({
4425
4428
  variant: "ghost",
4426
4429
  size: "sm",
4427
4430
  onClick: handleClick,
4428
- className: "text-[var(--color-primary)] -ml-2",
4431
+ className: "text-primary -ml-2",
4429
4432
  children: [
4430
4433
  linkLabel,
4431
4434
  " \u2192"
@@ -4468,8 +4471,8 @@ var MarketingFooter = ({
4468
4471
  {
4469
4472
  as: "footer",
4470
4473
  className: cn(
4471
- "bg-[var(--color-foreground)] text-[var(--color-background)]",
4472
- "border-t border-[var(--color-border)]",
4474
+ "bg-surface",
4475
+ "border-t border-border",
4473
4476
  "pt-12 pb-8 px-4",
4474
4477
  className
4475
4478
  ),
@@ -4481,7 +4484,7 @@ var MarketingFooter = ({
4481
4484
  Typography,
4482
4485
  {
4483
4486
  variant: "body2",
4484
- className: "font-semibold text-[var(--color-background)] mb-1",
4487
+ className: "font-semibold text-foreground mb-1",
4485
4488
  children: col.title
4486
4489
  }
4487
4490
  ),
@@ -4491,8 +4494,8 @@ var MarketingFooter = ({
4491
4494
  href: item.href,
4492
4495
  className: cn(
4493
4496
  "text-sm no-underline",
4494
- "text-[var(--color-background)]/60",
4495
- "hover:text-[var(--color-accent)]",
4497
+ "text-foreground/60",
4498
+ "hover:text-accent",
4496
4499
  "transition-colors duration-150"
4497
4500
  ),
4498
4501
  target: item.href.startsWith("http") ? "_blank" : void 0,
@@ -4507,7 +4510,7 @@ var MarketingFooter = ({
4507
4510
  Typography,
4508
4511
  {
4509
4512
  variant: "caption",
4510
- className: "text-[var(--color-background)]/30 text-center w-full pt-6",
4513
+ className: "text-foreground/30 text-center w-full pt-6",
4511
4514
  children: copyright
4512
4515
  }
4513
4516
  )
@@ -4540,7 +4543,7 @@ var PullQuote = ({
4540
4543
  Box,
4541
4544
  {
4542
4545
  className: cn(
4543
- "border-l-4 border-l-[var(--color-primary)]",
4546
+ "border-l-4 border-l-primary",
4544
4547
  "pl-6 py-2 my-6",
4545
4548
  className
4546
4549
  ),
@@ -4548,7 +4551,7 @@ var PullQuote = ({
4548
4551
  Typography,
4549
4552
  {
4550
4553
  variant: "large",
4551
- className: "italic text-[var(--color-foreground)] opacity-90",
4554
+ className: "italic text-foreground opacity-90",
4552
4555
  children
4553
4556
  }
4554
4557
  )
@@ -4624,7 +4627,7 @@ var AnimatedCounter = ({
4624
4627
  Typography,
4625
4628
  {
4626
4629
  variant: "h2",
4627
- className: "text-[var(--color-primary)] font-bold tabular-nums",
4630
+ className: "text-primary font-bold tabular-nums",
4628
4631
  children: hasAnimated ? displayValue : "0"
4629
4632
  }
4630
4633
  ),