@almadar/ui 2.24.5 → 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)]",
3019
+ "bg-primary text-primary-foreground",
3020
3020
  "border-none",
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)]"
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-[var(--color-muted)] text-[var(--color-foreground)]",
3027
- "border-none",
3028
- "hover:bg-[var(--color-muted-foreground)]/15 hover:text-[var(--color-foreground)]",
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,34 +3217,34 @@ var Badge = React5.forwardRef(
3216
3217
  Badge.displayName = "Badge";
3217
3218
  var variantStyles4 = {
3218
3219
  default: [
3219
- "bg-[var(--color-card)]",
3220
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3221
- "shadow-[var(--shadow-sm)]",
3220
+ "bg-card",
3221
+ "border-[length:var(--border-width)] border-border",
3222
+ "shadow-sm",
3222
3223
  "transition-all duration-[var(--transition-normal)]",
3223
- "hover:shadow-[var(--shadow-hover)] hover:-translate-y-0.5"
3224
+ "hover:shadow-lg hover:-translate-y-0.5"
3224
3225
  ].join(" "),
3225
3226
  bordered: [
3226
- "bg-[var(--color-card)]",
3227
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3228
- "shadow-[var(--shadow-sm)]",
3227
+ "bg-card",
3228
+ "border-[length:var(--border-width)] border-border",
3229
+ "shadow-sm",
3229
3230
  "transition-all duration-[var(--transition-normal)]",
3230
- "hover:shadow-[var(--shadow-hover)] hover:-translate-y-0.5"
3231
+ "hover:shadow-lg hover:-translate-y-0.5"
3231
3232
  ].join(" "),
3232
3233
  elevated: [
3233
- "bg-[var(--color-card)]",
3234
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3235
- "shadow-[var(--shadow-main)]",
3234
+ "bg-card",
3235
+ "border-[length:var(--border-width)] border-border",
3236
+ "shadow",
3236
3237
  "transition-all duration-[var(--transition-normal)]",
3237
- "hover:shadow-[var(--shadow-hover)] hover:-translate-y-0.5"
3238
+ "hover:shadow-lg hover:-translate-y-0.5"
3238
3239
  ].join(" "),
3239
3240
  // Interactive variant with theme-specific hover effects
3240
3241
  interactive: [
3241
- "bg-[var(--color-card)]",
3242
- "border-[length:var(--border-width)] border-[var(--color-border)]",
3243
- "shadow-[var(--shadow-main)]",
3242
+ "bg-card",
3243
+ "border-[length:var(--border-width)] border-border",
3244
+ "shadow",
3244
3245
  "cursor-pointer",
3245
3246
  "transition-all duration-[var(--transition-normal)]",
3246
- "hover:shadow-[var(--shadow-hover)]"
3247
+ "hover:shadow-lg"
3247
3248
  ].join(" ")
3248
3249
  };
3249
3250
  var paddingStyles2 = {
@@ -3254,9 +3255,9 @@ var paddingStyles2 = {
3254
3255
  };
3255
3256
  var shadowStyles2 = {
3256
3257
  none: "shadow-none",
3257
- sm: "shadow-[var(--shadow-sm)]",
3258
- md: "shadow-[var(--shadow-main)]",
3259
- lg: "shadow-[var(--shadow-lg)]"
3258
+ sm: "shadow-sm",
3259
+ md: "shadow",
3260
+ lg: "shadow-lg"
3260
3261
  };
3261
3262
  var Card = React5.forwardRef(
3262
3263
  ({
@@ -3274,7 +3275,7 @@ var Card = React5.forwardRef(
3274
3275
  {
3275
3276
  ref,
3276
3277
  className: cn(
3277
- "rounded-[var(--radius-md)]",
3278
+ "rounded-md",
3278
3279
  "transition-all duration-[var(--transition-normal)]",
3279
3280
  variantStyles4[variant],
3280
3281
  paddingStyles2[padding],
@@ -3284,8 +3285,8 @@ var Card = React5.forwardRef(
3284
3285
  ...props,
3285
3286
  children: [
3286
3287
  (title || subtitle) && /* @__PURE__ */ jsxs("div", { className: "mb-4", children: [
3287
- title && /* @__PURE__ */ jsx("h3", { className: "text-lg text-[var(--color-card-foreground)] font-[var(--font-weight-bold)]", children: title }),
3288
- 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 })
3289
3290
  ] }),
3290
3291
  children
3291
3292
  ]
@@ -3301,7 +3302,7 @@ var CardTitle = React5.forwardRef(({ className, ...props }, ref) => /* @__PURE__
3301
3302
  {
3302
3303
  ref,
3303
3304
  className: cn(
3304
- "text-lg text-[var(--color-card-foreground)]",
3305
+ "text-lg text-card-foreground",
3305
3306
  "font-[var(--font-weight-bold)]",
3306
3307
  className
3307
3308
  ),
@@ -3338,7 +3339,7 @@ var Divider = ({
3338
3339
  "div",
3339
3340
  {
3340
3341
  className: cn(
3341
- "w-0 h-full border-l border-[var(--color-border)]",
3342
+ "w-0 h-full border-l border-border",
3342
3343
  variantStyles5[variant],
3343
3344
  className
3344
3345
  ),
@@ -3359,17 +3360,17 @@ var Divider = ({
3359
3360
  "div",
3360
3361
  {
3361
3362
  className: cn(
3362
- "flex-1 h-0 border-t border-[var(--color-border)]",
3363
+ "flex-1 h-0 border-t border-border",
3363
3364
  variantStyles5[variant]
3364
3365
  )
3365
3366
  }
3366
3367
  ),
3367
- /* @__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 }),
3368
3369
  /* @__PURE__ */ jsx(
3369
3370
  "div",
3370
3371
  {
3371
3372
  className: cn(
3372
- "flex-1 h-0 border-t border-[var(--color-border)]",
3373
+ "flex-1 h-0 border-t border-border",
3373
3374
  variantStyles5[variant]
3374
3375
  )
3375
3376
  }
@@ -3382,7 +3383,7 @@ var Divider = ({
3382
3383
  "div",
3383
3384
  {
3384
3385
  className: cn(
3385
- "w-full h-0 border-t border-[var(--color-border)] my-4",
3386
+ "w-full h-0 border-t border-border my-4",
3386
3387
  variantStyles5[variant],
3387
3388
  className
3388
3389
  ),
@@ -3457,8 +3458,8 @@ var Spacer = ({
3457
3458
  };
3458
3459
  var backgroundClasses = {
3459
3460
  default: "",
3460
- alt: "bg-[var(--color-surface)]",
3461
- dark: "bg-[var(--color-foreground)] text-[var(--color-background)]",
3461
+ alt: "bg-surface",
3462
+ dark: "bg-foreground text-background",
3462
3463
  gradient: [
3463
3464
  "bg-gradient-to-b",
3464
3465
  "from-[var(--color-primary)]/5",
@@ -3507,9 +3508,9 @@ var InstallBox = ({
3507
3508
  Box,
3508
3509
  {
3509
3510
  className: cn(
3510
- "bg-[var(--color-foreground)]",
3511
- "rounded-[var(--radius-md)]",
3512
- "border-[length:var(--border-width)] border-[var(--color-border)]"
3511
+ "bg-foreground",
3512
+ "rounded-md",
3513
+ "border-[length:var(--border-width)] border-border"
3513
3514
  ),
3514
3515
  padding: "md",
3515
3516
  children: /* @__PURE__ */ jsxs(HStack, { gap: "md", align: "center", children: [
@@ -3517,7 +3518,7 @@ var InstallBox = ({
3517
3518
  Typography,
3518
3519
  {
3519
3520
  variant: "body2",
3520
- 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",
3521
3522
  truncate: true,
3522
3523
  children: command
3523
3524
  }
@@ -3528,7 +3529,7 @@ var InstallBox = ({
3528
3529
  variant: "ghost",
3529
3530
  size: "md",
3530
3531
  onClick: handleCopy,
3531
- className: "flex-shrink-0 text-[var(--color-background)] hover:text-[var(--color-background)]",
3532
+ className: "flex-shrink-0 text-background hover:text-background",
3532
3533
  children: copied ? "Copied!" : "Copy"
3533
3534
  }
3534
3535
  )
@@ -3547,7 +3548,7 @@ var MarketingImage = ({ src, alt, className }) => /* @__PURE__ */ jsx(
3547
3548
  Box,
3548
3549
  {
3549
3550
  className: cn(
3550
- "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",
3551
3552
  className
3552
3553
  ),
3553
3554
  style: { backgroundImage: `url(${src})` },
@@ -3582,7 +3583,7 @@ var HeroSection = ({
3582
3583
  align: isCenter ? "center" : "left",
3583
3584
  className: cn(
3584
3585
  "max-w-3xl leading-tight",
3585
- isDark && "text-[var(--color-background)]"
3586
+ isDark && "text-background"
3586
3587
  ),
3587
3588
  children: [
3588
3589
  title,
@@ -3592,7 +3593,7 @@ var HeroSection = ({
3592
3593
  {
3593
3594
  as: "span",
3594
3595
  variant: "h1",
3595
- className: "text-[var(--color-primary)]",
3596
+ className: "text-primary",
3596
3597
  children: titleAccent
3597
3598
  }
3598
3599
  )
@@ -3605,7 +3606,7 @@ var HeroSection = ({
3605
3606
  align: isCenter ? "center" : "left",
3606
3607
  className: cn(
3607
3608
  "max-w-3xl leading-tight",
3608
- isDark && "text-[var(--color-background)]"
3609
+ isDark && "text-background"
3609
3610
  ),
3610
3611
  children: title
3611
3612
  }
@@ -3719,10 +3720,10 @@ var CTABanner = ({
3719
3720
  {
3720
3721
  className: cn(
3721
3722
  "py-16",
3722
- background === "alt" && "bg-[var(--color-surface)]",
3723
- background === "dark" && "bg-[var(--color-surface)]",
3724
- background === "gradient" && "bg-[var(--color-surface)]",
3725
- 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",
3726
3727
  className
3727
3728
  ),
3728
3729
  children: /* @__PURE__ */ jsxs(
@@ -3789,7 +3790,7 @@ var FeatureCard = ({
3789
3790
  {
3790
3791
  name: icon,
3791
3792
  size: iconSizeMap[size],
3792
- className: "text-[var(--color-accent,#06b6d4)]"
3793
+ className: "text-accent"
3793
3794
  }
3794
3795
  );
3795
3796
  }
@@ -3806,7 +3807,7 @@ var FeatureCard = ({
3806
3807
  variant,
3807
3808
  padding: size,
3808
3809
  className: cn(
3809
- variant === "interactive" && "hover:border-[var(--color-primary)]",
3810
+ variant === "interactive" && "hover:border-primary",
3810
3811
  className
3811
3812
  ),
3812
3813
  onClick: variant === "interactive" && href ? handleLinkClick : void 0,
@@ -3820,7 +3821,7 @@ var FeatureCard = ({
3820
3821
  variant: "ghost",
3821
3822
  size: "sm",
3822
3823
  onClick: handleLinkClick,
3823
- className: "text-[var(--color-primary)] -ml-2",
3824
+ className: "text-primary -ml-2",
3824
3825
  children: linkLabel
3825
3826
  }
3826
3827
  )
@@ -3908,10 +3909,10 @@ var PricingCard = ({
3908
3909
  "flex flex-col h-full",
3909
3910
  "hover:-translate-y-1 transition-all",
3910
3911
  highlighted && [
3911
- "border-[length:2px] border-[var(--color-primary)]",
3912
- "shadow-[var(--shadow-lg)]",
3912
+ "border-[length:2px] border-primary",
3913
+ "shadow-lg",
3913
3914
  "scale-[1.05]",
3914
- "ring-2 ring-[var(--color-primary)]"
3915
+ "ring-2 ring-primary"
3915
3916
  ],
3916
3917
  className
3917
3918
  ),
@@ -3922,7 +3923,7 @@ var PricingCard = ({
3922
3923
  Typography,
3923
3924
  {
3924
3925
  variant: "h2",
3925
- className: "text-[var(--color-primary)] font-bold",
3926
+ className: "text-primary font-bold",
3926
3927
  children: price
3927
3928
  }
3928
3929
  ),
@@ -3934,7 +3935,7 @@ var PricingCard = ({
3934
3935
  {
3935
3936
  icon: Check,
3936
3937
  size: "sm",
3937
- className: "flex-shrink-0 text-[var(--color-success)]"
3938
+ className: "flex-shrink-0 text-success"
3938
3939
  }
3939
3940
  ),
3940
3941
  /* @__PURE__ */ jsx(Typography, { variant: "body2", children: feature })
@@ -3989,7 +3990,7 @@ var SplitSection = ({
3989
3990
  {
3990
3991
  name: "check",
3991
3992
  size: "sm",
3992
- className: "text-[var(--color-primary)] flex-shrink-0 mt-0.5"
3993
+ className: "text-primary flex-shrink-0 mt-0.5"
3993
3994
  }
3994
3995
  ),
3995
3996
  /* @__PURE__ */ jsx(Typography, { variant: "body2", children: bullet })
@@ -3999,7 +4000,7 @@ var SplitSection = ({
3999
4000
  Box,
4000
4001
  {
4001
4002
  className: cn(
4002
- "flex-1 min-w-0 min-h-[240px] rounded-[var(--radius-md)]",
4003
+ "flex-1 min-w-0 min-h-[240px] rounded-md",
4003
4004
  "bg-cover bg-center"
4004
4005
  ),
4005
4006
  style: { backgroundImage: `url(${image.src})` },
@@ -4013,7 +4014,7 @@ var SplitSection = ({
4013
4014
  {
4014
4015
  className: cn(
4015
4016
  "w-full",
4016
- background === "alt" ? "bg-[var(--color-muted)]" : "bg-[var(--color-background)]",
4017
+ background === "alt" ? "bg-muted" : "bg-background",
4017
4018
  className
4018
4019
  ),
4019
4020
  padding: "lg",
@@ -4033,9 +4034,9 @@ var StepCircle = ({ step, index }) => {
4033
4034
  className: cn(
4034
4035
  "w-10 h-10 rounded-full flex-shrink-0",
4035
4036
  "flex items-center justify-center",
4036
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]"
4037
+ "bg-primary text-primary-foreground"
4037
4038
  ),
4038
- 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" })
4039
4040
  }
4040
4041
  );
4041
4042
  }
@@ -4045,9 +4046,9 @@ var StepCircle = ({ step, index }) => {
4045
4046
  className: cn(
4046
4047
  "w-10 h-10 rounded-full flex-shrink-0",
4047
4048
  "flex items-center justify-center",
4048
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]"
4049
+ "bg-primary text-primary-foreground"
4049
4050
  ),
4050
- 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 })
4051
4052
  }
4052
4053
  );
4053
4054
  };
@@ -4062,7 +4063,7 @@ var StepFlow = ({
4062
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: [
4063
4064
  /* @__PURE__ */ jsxs(VStack, { gap: "none", align: "center", children: [
4064
4065
  /* @__PURE__ */ jsx(StepCircle, { step, index }),
4065
- 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" })
4066
4067
  ] }),
4067
4068
  /* @__PURE__ */ jsxs(VStack, { gap: "xs", className: "flex-1 pt-1", children: [
4068
4069
  /* @__PURE__ */ jsx(Typography, { variant: "h4", children: step.title }),
@@ -4090,7 +4091,7 @@ var StatsGrid = ({
4090
4091
  Typography,
4091
4092
  {
4092
4093
  variant: "h2",
4093
- className: "font-bold text-[var(--color-primary)]",
4094
+ className: "font-bold text-primary",
4094
4095
  children: stat.value
4095
4096
  }
4096
4097
  ),
@@ -4205,7 +4206,7 @@ var ShowcaseCard = ({
4205
4206
  {
4206
4207
  className: cn(
4207
4208
  "w-full aspect-video bg-cover bg-center",
4208
- "rounded-t-[var(--radius-md)]"
4209
+ "rounded-t-md"
4209
4210
  ),
4210
4211
  style: { backgroundImage: `url(${image.src})` },
4211
4212
  role: "img",
@@ -4244,10 +4245,10 @@ var statusSizeClasses = {
4244
4245
  xl: "w-4 h-4"
4245
4246
  };
4246
4247
  var statusClasses = {
4247
- online: "bg-[var(--color-success)]",
4248
- offline: "bg-[var(--color-muted-foreground)]",
4249
- away: "bg-[var(--color-warning)]",
4250
- busy: "bg-[var(--color-error)]"
4248
+ online: "bg-success",
4249
+ offline: "bg-muted-foreground",
4250
+ away: "bg-warning",
4251
+ busy: "bg-error"
4251
4252
  };
4252
4253
  var badgeSizeClasses = {
4253
4254
  xs: "w-3 h-3 text-[8px]",
@@ -4282,7 +4283,7 @@ var Avatar = ({
4282
4283
  const hasImage = !!src;
4283
4284
  const hasInitials = !!initials;
4284
4285
  const hasIcon = !!Icon2;
4285
- const getInitialsBackground = () => "bg-[var(--color-primary)] text-[var(--color-primary-foreground)]";
4286
+ const getInitialsBackground = () => "bg-primary text-primary-foreground";
4286
4287
  const isClickable = action || onClick;
4287
4288
  const handleClick = () => {
4288
4289
  if (action) {
@@ -4296,7 +4297,7 @@ var Avatar = ({
4296
4297
  {
4297
4298
  className: cn(
4298
4299
  "relative inline-flex items-center justify-center",
4299
- "bg-[var(--color-muted)] border-[length:var(--border-width)] border-[var(--color-border)]",
4300
+ "bg-muted border-[length:var(--border-width)] border-border",
4300
4301
  "overflow-hidden",
4301
4302
  sizeClasses2[size],
4302
4303
  isClickable && "cursor-pointer hover:bg-[var(--color-surface-hover)] transition-colors",
@@ -4329,7 +4330,7 @@ var Avatar = ({
4329
4330
  Icon2,
4330
4331
  {
4331
4332
  className: cn(
4332
- "text-[var(--color-foreground)]",
4333
+ "text-foreground",
4333
4334
  iconSizeClasses[size]
4334
4335
  )
4335
4336
  }
@@ -4337,7 +4338,7 @@ var Avatar = ({
4337
4338
  User,
4338
4339
  {
4339
4340
  className: cn(
4340
- "text-[var(--color-foreground)]",
4341
+ "text-foreground",
4341
4342
  iconSizeClasses[size]
4342
4343
  )
4343
4344
  }
@@ -4348,7 +4349,7 @@ var Avatar = ({
4348
4349
  "div",
4349
4350
  {
4350
4351
  className: cn(
4351
- "absolute bottom-0 right-0 border-2 border-[var(--color-card)]",
4352
+ "absolute bottom-0 right-0 border-2 border-card",
4352
4353
  statusClasses[status],
4353
4354
  statusSizeClasses[size]
4354
4355
  ),
@@ -4360,8 +4361,8 @@ var Avatar = ({
4360
4361
  {
4361
4362
  className: cn(
4362
4363
  "absolute -top-1 -right-1 flex items-center justify-center",
4363
- "bg-[var(--color-primary)] text-[var(--color-primary-foreground)] font-bold",
4364
- "border-2 border-[var(--color-card)]",
4364
+ "bg-primary text-primary-foreground font-bold",
4365
+ "border-2 border-card",
4365
4366
  badgeSizeClasses[size]
4366
4367
  ),
4367
4368
  "aria-label": `Badge: ${badge}`,
@@ -4427,7 +4428,7 @@ var CaseStudyCard = ({
4427
4428
  variant: "ghost",
4428
4429
  size: "sm",
4429
4430
  onClick: handleClick,
4430
- className: "text-[var(--color-primary)] -ml-2",
4431
+ className: "text-primary -ml-2",
4431
4432
  children: [
4432
4433
  linkLabel,
4433
4434
  " \u2192"
@@ -4470,8 +4471,8 @@ var MarketingFooter = ({
4470
4471
  {
4471
4472
  as: "footer",
4472
4473
  className: cn(
4473
- "bg-[var(--color-foreground)] text-[var(--color-background)]",
4474
- "border-t border-[var(--color-border)]",
4474
+ "bg-surface",
4475
+ "border-t border-border",
4475
4476
  "pt-12 pb-8 px-4",
4476
4477
  className
4477
4478
  ),
@@ -4483,7 +4484,7 @@ var MarketingFooter = ({
4483
4484
  Typography,
4484
4485
  {
4485
4486
  variant: "body2",
4486
- className: "font-semibold text-[var(--color-background)] mb-1",
4487
+ className: "font-semibold text-foreground mb-1",
4487
4488
  children: col.title
4488
4489
  }
4489
4490
  ),
@@ -4493,8 +4494,8 @@ var MarketingFooter = ({
4493
4494
  href: item.href,
4494
4495
  className: cn(
4495
4496
  "text-sm no-underline",
4496
- "text-[var(--color-background)]/60",
4497
- "hover:text-[var(--color-accent)]",
4497
+ "text-foreground/60",
4498
+ "hover:text-accent",
4498
4499
  "transition-colors duration-150"
4499
4500
  ),
4500
4501
  target: item.href.startsWith("http") ? "_blank" : void 0,
@@ -4509,7 +4510,7 @@ var MarketingFooter = ({
4509
4510
  Typography,
4510
4511
  {
4511
4512
  variant: "caption",
4512
- className: "text-[var(--color-background)]/30 text-center w-full pt-6",
4513
+ className: "text-foreground/30 text-center w-full pt-6",
4513
4514
  children: copyright
4514
4515
  }
4515
4516
  )
@@ -4542,7 +4543,7 @@ var PullQuote = ({
4542
4543
  Box,
4543
4544
  {
4544
4545
  className: cn(
4545
- "border-l-4 border-l-[var(--color-primary)]",
4546
+ "border-l-4 border-l-primary",
4546
4547
  "pl-6 py-2 my-6",
4547
4548
  className
4548
4549
  ),
@@ -4550,7 +4551,7 @@ var PullQuote = ({
4550
4551
  Typography,
4551
4552
  {
4552
4553
  variant: "large",
4553
- className: "italic text-[var(--color-foreground)] opacity-90",
4554
+ className: "italic text-foreground opacity-90",
4554
4555
  children
4555
4556
  }
4556
4557
  )
@@ -4626,7 +4627,7 @@ var AnimatedCounter = ({
4626
4627
  Typography,
4627
4628
  {
4628
4629
  variant: "h2",
4629
- className: "text-[var(--color-primary)] font-bold tabular-nums",
4630
+ className: "text-primary font-bold tabular-nums",
4630
4631
  children: hasAnimated ? displayValue : "0"
4631
4632
  }
4632
4633
  ),