@almadar/ui 5.69.0 → 5.70.0

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.
@@ -44998,35 +44998,44 @@ var init_HexStrategyBoard = __esm({
44998
44998
  }
44999
44999
  });
45000
45000
  function HolidayRunnerBoard({
45001
- backgroundImage,
45001
+ tiles,
45002
+ units,
45003
+ features,
45004
+ assetManifest,
45002
45005
  assetBaseUrl,
45003
- width = 800,
45004
- height = 400,
45005
- fps = 60,
45006
+ scale = 0.45,
45007
+ showMinimap = false,
45008
+ enableCamera = true,
45009
+ tileClickEvent,
45010
+ unitClickEvent,
45006
45011
  isLoading,
45007
45012
  error,
45008
45013
  className
45009
45014
  }) {
45010
- return /* @__PURE__ */ jsxs("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: [
45011
- isLoading && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/40 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm", children: "Loading\u2026" }) }),
45012
- error && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/60 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-red-400 text-sm", children: error.message }) }),
45013
- /* @__PURE__ */ jsx(
45014
- GameCanvas2D,
45015
- {
45016
- width,
45017
- height,
45018
- fps,
45019
- backgroundImage: backgroundImage ?? "",
45020
- assetBaseUrl
45021
- }
45022
- )
45023
- ] });
45015
+ return /* @__PURE__ */ jsx("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
45016
+ IsometricCanvas_default,
45017
+ {
45018
+ tileLayout: "flat",
45019
+ tiles,
45020
+ units,
45021
+ features,
45022
+ assetManifest,
45023
+ assetBaseUrl,
45024
+ scale,
45025
+ showMinimap,
45026
+ enableCamera,
45027
+ tileClickEvent,
45028
+ unitClickEvent,
45029
+ isLoading,
45030
+ error
45031
+ }
45032
+ ) });
45024
45033
  }
45025
45034
  var init_HolidayRunnerBoard = __esm({
45026
45035
  "components/game/organisms/HolidayRunnerBoard.tsx"() {
45027
45036
  "use client";
45028
45037
  init_cn();
45029
- init_GameCanvas2D();
45038
+ init_IsometricCanvas();
45030
45039
  HolidayRunnerBoard.displayName = "HolidayRunnerBoard";
45031
45040
  }
45032
45041
  });
@@ -46744,25 +46753,36 @@ var init_PricingPageTemplate = __esm({
46744
46753
  }
46745
46754
  });
46746
46755
  function RacingBoard({
46747
- backgroundImage,
46756
+ tiles,
46757
+ units,
46758
+ features,
46759
+ assetManifest,
46748
46760
  assetBaseUrl,
46749
- width = 800,
46750
- height = 600,
46751
- fps = 60,
46752
- tickEvent,
46753
- drawEvent,
46761
+ scale = 0.45,
46762
+ showMinimap = true,
46763
+ enableCamera = true,
46764
+ tileClickEvent,
46765
+ unitClickEvent,
46766
+ isLoading,
46767
+ error,
46754
46768
  className
46755
46769
  }) {
46756
46770
  return /* @__PURE__ */ jsx("div", { className: cn("racing-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
46757
- GameCanvas2D,
46771
+ IsometricCanvas_default,
46758
46772
  {
46759
- backgroundImage,
46773
+ tileLayout: "flat",
46774
+ tiles,
46775
+ units,
46776
+ features,
46777
+ assetManifest,
46760
46778
  assetBaseUrl,
46761
- width,
46762
- height,
46763
- fps,
46764
- tickEvent: typeof tickEvent === "string" ? tickEvent : void 0,
46765
- drawEvent: typeof drawEvent === "string" ? drawEvent : void 0
46779
+ scale,
46780
+ showMinimap,
46781
+ enableCamera,
46782
+ tileClickEvent,
46783
+ unitClickEvent,
46784
+ isLoading,
46785
+ error
46766
46786
  }
46767
46787
  ) });
46768
46788
  }
@@ -46770,7 +46790,7 @@ var init_RacingBoard = __esm({
46770
46790
  "components/game/organisms/RacingBoard.tsx"() {
46771
46791
  "use client";
46772
46792
  init_cn();
46773
- init_GameCanvas2D();
46793
+ init_IsometricCanvas();
46774
46794
  RacingBoard.displayName = "RacingBoard";
46775
46795
  }
46776
46796
  });
@@ -50003,35 +50023,44 @@ var init_SokobanBoard = __esm({
50003
50023
  }
50004
50024
  });
50005
50025
  function SpaceShmupBoard({
50006
- backgroundImage,
50026
+ tiles,
50027
+ units,
50028
+ features,
50029
+ assetManifest,
50007
50030
  assetBaseUrl,
50008
- width = 800,
50009
- height = 600,
50010
- fps = 60,
50031
+ scale = 0.45,
50032
+ showMinimap = false,
50033
+ enableCamera = true,
50034
+ tileClickEvent,
50035
+ unitClickEvent,
50011
50036
  isLoading,
50012
50037
  error,
50013
50038
  className
50014
50039
  }) {
50015
- return /* @__PURE__ */ jsxs("div", { className: cn("space-shmup-board relative w-full h-full", className), children: [
50016
- isLoading && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/60 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm", children: "Loading\u2026" }) }),
50017
- error && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-red-900/60 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm", children: error.message }) }),
50018
- /* @__PURE__ */ jsx(
50019
- GameCanvas2D,
50020
- {
50021
- backgroundImage,
50022
- assetBaseUrl,
50023
- width,
50024
- height,
50025
- fps
50026
- }
50027
- )
50028
- ] });
50040
+ return /* @__PURE__ */ jsx("div", { className: cn("space-shmup-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
50041
+ IsometricCanvas_default,
50042
+ {
50043
+ tileLayout: "flat",
50044
+ tiles,
50045
+ units,
50046
+ features,
50047
+ assetManifest,
50048
+ assetBaseUrl,
50049
+ scale,
50050
+ showMinimap,
50051
+ enableCamera,
50052
+ tileClickEvent,
50053
+ unitClickEvent,
50054
+ isLoading,
50055
+ error
50056
+ }
50057
+ ) });
50029
50058
  }
50030
50059
  var init_SpaceShmupBoard = __esm({
50031
50060
  "components/game/organisms/SpaceShmupBoard.tsx"() {
50032
50061
  "use client";
50033
50062
  init_cn();
50034
- init_GameCanvas2D();
50063
+ init_IsometricCanvas();
50035
50064
  SpaceShmupBoard.displayName = "SpaceShmupBoard";
50036
50065
  }
50037
50066
  });
@@ -44743,35 +44743,44 @@ var init_HexStrategyBoard = __esm({
44743
44743
  }
44744
44744
  });
44745
44745
  function HolidayRunnerBoard({
44746
- backgroundImage,
44746
+ tiles,
44747
+ units,
44748
+ features,
44749
+ assetManifest,
44747
44750
  assetBaseUrl,
44748
- width = 800,
44749
- height = 400,
44750
- fps = 60,
44751
+ scale = 0.45,
44752
+ showMinimap = false,
44753
+ enableCamera = true,
44754
+ tileClickEvent,
44755
+ unitClickEvent,
44751
44756
  isLoading,
44752
44757
  error,
44753
44758
  className
44754
44759
  }) {
44755
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: [
44756
- isLoading && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/40 z-10", children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm", children: "Loading\u2026" }) }),
44757
- error && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/60 z-10", children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-red-400 text-sm", children: error.message }) }),
44758
- /* @__PURE__ */ jsxRuntime.jsx(
44759
- GameCanvas2D,
44760
- {
44761
- width,
44762
- height,
44763
- fps,
44764
- backgroundImage: backgroundImage ?? "",
44765
- assetBaseUrl
44766
- }
44767
- )
44768
- ] });
44760
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: /* @__PURE__ */ jsxRuntime.jsx(
44761
+ IsometricCanvas_default,
44762
+ {
44763
+ tileLayout: "flat",
44764
+ tiles,
44765
+ units,
44766
+ features,
44767
+ assetManifest,
44768
+ assetBaseUrl,
44769
+ scale,
44770
+ showMinimap,
44771
+ enableCamera,
44772
+ tileClickEvent,
44773
+ unitClickEvent,
44774
+ isLoading,
44775
+ error
44776
+ }
44777
+ ) });
44769
44778
  }
44770
44779
  var init_HolidayRunnerBoard = __esm({
44771
44780
  "components/game/organisms/HolidayRunnerBoard.tsx"() {
44772
44781
  "use client";
44773
44782
  init_cn();
44774
- init_GameCanvas2D();
44783
+ init_IsometricCanvas();
44775
44784
  HolidayRunnerBoard.displayName = "HolidayRunnerBoard";
44776
44785
  }
44777
44786
  });
@@ -46489,25 +46498,36 @@ var init_PricingPageTemplate = __esm({
46489
46498
  }
46490
46499
  });
46491
46500
  function RacingBoard({
46492
- backgroundImage,
46501
+ tiles,
46502
+ units,
46503
+ features,
46504
+ assetManifest,
46493
46505
  assetBaseUrl,
46494
- width = 800,
46495
- height = 600,
46496
- fps = 60,
46497
- tickEvent,
46498
- drawEvent,
46506
+ scale = 0.45,
46507
+ showMinimap = true,
46508
+ enableCamera = true,
46509
+ tileClickEvent,
46510
+ unitClickEvent,
46511
+ isLoading,
46512
+ error,
46499
46513
  className
46500
46514
  }) {
46501
46515
  return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("racing-board relative w-full h-full", className), children: /* @__PURE__ */ jsxRuntime.jsx(
46502
- GameCanvas2D,
46516
+ IsometricCanvas_default,
46503
46517
  {
46504
- backgroundImage,
46518
+ tileLayout: "flat",
46519
+ tiles,
46520
+ units,
46521
+ features,
46522
+ assetManifest,
46505
46523
  assetBaseUrl,
46506
- width,
46507
- height,
46508
- fps,
46509
- tickEvent: typeof tickEvent === "string" ? tickEvent : void 0,
46510
- drawEvent: typeof drawEvent === "string" ? drawEvent : void 0
46524
+ scale,
46525
+ showMinimap,
46526
+ enableCamera,
46527
+ tileClickEvent,
46528
+ unitClickEvent,
46529
+ isLoading,
46530
+ error
46511
46531
  }
46512
46532
  ) });
46513
46533
  }
@@ -46515,7 +46535,7 @@ var init_RacingBoard = __esm({
46515
46535
  "components/game/organisms/RacingBoard.tsx"() {
46516
46536
  "use client";
46517
46537
  init_cn();
46518
- init_GameCanvas2D();
46538
+ init_IsometricCanvas();
46519
46539
  RacingBoard.displayName = "RacingBoard";
46520
46540
  }
46521
46541
  });
@@ -49767,35 +49787,44 @@ var init_SokobanBoard = __esm({
49767
49787
  }
49768
49788
  });
49769
49789
  function SpaceShmupBoard({
49770
- backgroundImage,
49790
+ tiles,
49791
+ units,
49792
+ features,
49793
+ assetManifest,
49771
49794
  assetBaseUrl,
49772
- width = 800,
49773
- height = 600,
49774
- fps = 60,
49795
+ scale = 0.45,
49796
+ showMinimap = false,
49797
+ enableCamera = true,
49798
+ tileClickEvent,
49799
+ unitClickEvent,
49775
49800
  isLoading,
49776
49801
  error,
49777
49802
  className
49778
49803
  }) {
49779
- return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("space-shmup-board relative w-full h-full", className), children: [
49780
- isLoading && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/60 z-10", children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm", children: "Loading\u2026" }) }),
49781
- error && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-red-900/60 z-10", children: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-white text-sm", children: error.message }) }),
49782
- /* @__PURE__ */ jsxRuntime.jsx(
49783
- GameCanvas2D,
49784
- {
49785
- backgroundImage,
49786
- assetBaseUrl,
49787
- width,
49788
- height,
49789
- fps
49790
- }
49791
- )
49792
- ] });
49804
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: cn("space-shmup-board relative w-full h-full", className), children: /* @__PURE__ */ jsxRuntime.jsx(
49805
+ IsometricCanvas_default,
49806
+ {
49807
+ tileLayout: "flat",
49808
+ tiles,
49809
+ units,
49810
+ features,
49811
+ assetManifest,
49812
+ assetBaseUrl,
49813
+ scale,
49814
+ showMinimap,
49815
+ enableCamera,
49816
+ tileClickEvent,
49817
+ unitClickEvent,
49818
+ isLoading,
49819
+ error
49820
+ }
49821
+ ) });
49793
49822
  }
49794
49823
  var init_SpaceShmupBoard = __esm({
49795
49824
  "components/game/organisms/SpaceShmupBoard.tsx"() {
49796
49825
  "use client";
49797
49826
  init_cn();
49798
- init_GameCanvas2D();
49827
+ init_IsometricCanvas();
49799
49828
  SpaceShmupBoard.displayName = "SpaceShmupBoard";
49800
49829
  }
49801
49830
  });
@@ -44696,35 +44696,44 @@ var init_HexStrategyBoard = __esm({
44696
44696
  }
44697
44697
  });
44698
44698
  function HolidayRunnerBoard({
44699
- backgroundImage,
44699
+ tiles,
44700
+ units,
44701
+ features,
44702
+ assetManifest,
44700
44703
  assetBaseUrl,
44701
- width = 800,
44702
- height = 400,
44703
- fps = 60,
44704
+ scale = 0.45,
44705
+ showMinimap = false,
44706
+ enableCamera = true,
44707
+ tileClickEvent,
44708
+ unitClickEvent,
44704
44709
  isLoading,
44705
44710
  error,
44706
44711
  className
44707
44712
  }) {
44708
- return /* @__PURE__ */ jsxs("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: [
44709
- isLoading && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/40 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm", children: "Loading\u2026" }) }),
44710
- error && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/60 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-red-400 text-sm", children: error.message }) }),
44711
- /* @__PURE__ */ jsx(
44712
- GameCanvas2D,
44713
- {
44714
- width,
44715
- height,
44716
- fps,
44717
- backgroundImage: backgroundImage ?? "",
44718
- assetBaseUrl
44719
- }
44720
- )
44721
- ] });
44713
+ return /* @__PURE__ */ jsx("div", { className: cn("holiday-runner-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
44714
+ IsometricCanvas_default,
44715
+ {
44716
+ tileLayout: "flat",
44717
+ tiles,
44718
+ units,
44719
+ features,
44720
+ assetManifest,
44721
+ assetBaseUrl,
44722
+ scale,
44723
+ showMinimap,
44724
+ enableCamera,
44725
+ tileClickEvent,
44726
+ unitClickEvent,
44727
+ isLoading,
44728
+ error
44729
+ }
44730
+ ) });
44722
44731
  }
44723
44732
  var init_HolidayRunnerBoard = __esm({
44724
44733
  "components/game/organisms/HolidayRunnerBoard.tsx"() {
44725
44734
  "use client";
44726
44735
  init_cn();
44727
- init_GameCanvas2D();
44736
+ init_IsometricCanvas();
44728
44737
  HolidayRunnerBoard.displayName = "HolidayRunnerBoard";
44729
44738
  }
44730
44739
  });
@@ -46442,25 +46451,36 @@ var init_PricingPageTemplate = __esm({
46442
46451
  }
46443
46452
  });
46444
46453
  function RacingBoard({
46445
- backgroundImage,
46454
+ tiles,
46455
+ units,
46456
+ features,
46457
+ assetManifest,
46446
46458
  assetBaseUrl,
46447
- width = 800,
46448
- height = 600,
46449
- fps = 60,
46450
- tickEvent,
46451
- drawEvent,
46459
+ scale = 0.45,
46460
+ showMinimap = true,
46461
+ enableCamera = true,
46462
+ tileClickEvent,
46463
+ unitClickEvent,
46464
+ isLoading,
46465
+ error,
46452
46466
  className
46453
46467
  }) {
46454
46468
  return /* @__PURE__ */ jsx("div", { className: cn("racing-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
46455
- GameCanvas2D,
46469
+ IsometricCanvas_default,
46456
46470
  {
46457
- backgroundImage,
46471
+ tileLayout: "flat",
46472
+ tiles,
46473
+ units,
46474
+ features,
46475
+ assetManifest,
46458
46476
  assetBaseUrl,
46459
- width,
46460
- height,
46461
- fps,
46462
- tickEvent: typeof tickEvent === "string" ? tickEvent : void 0,
46463
- drawEvent: typeof drawEvent === "string" ? drawEvent : void 0
46477
+ scale,
46478
+ showMinimap,
46479
+ enableCamera,
46480
+ tileClickEvent,
46481
+ unitClickEvent,
46482
+ isLoading,
46483
+ error
46464
46484
  }
46465
46485
  ) });
46466
46486
  }
@@ -46468,7 +46488,7 @@ var init_RacingBoard = __esm({
46468
46488
  "components/game/organisms/RacingBoard.tsx"() {
46469
46489
  "use client";
46470
46490
  init_cn();
46471
- init_GameCanvas2D();
46491
+ init_IsometricCanvas();
46472
46492
  RacingBoard.displayName = "RacingBoard";
46473
46493
  }
46474
46494
  });
@@ -49720,35 +49740,44 @@ var init_SokobanBoard = __esm({
49720
49740
  }
49721
49741
  });
49722
49742
  function SpaceShmupBoard({
49723
- backgroundImage,
49743
+ tiles,
49744
+ units,
49745
+ features,
49746
+ assetManifest,
49724
49747
  assetBaseUrl,
49725
- width = 800,
49726
- height = 600,
49727
- fps = 60,
49748
+ scale = 0.45,
49749
+ showMinimap = false,
49750
+ enableCamera = true,
49751
+ tileClickEvent,
49752
+ unitClickEvent,
49728
49753
  isLoading,
49729
49754
  error,
49730
49755
  className
49731
49756
  }) {
49732
- return /* @__PURE__ */ jsxs("div", { className: cn("space-shmup-board relative w-full h-full", className), children: [
49733
- isLoading && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-black/60 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm", children: "Loading\u2026" }) }),
49734
- error && /* @__PURE__ */ jsx("div", { className: "absolute inset-0 flex items-center justify-center bg-red-900/60 z-10", children: /* @__PURE__ */ jsx("span", { className: "text-white text-sm", children: error.message }) }),
49735
- /* @__PURE__ */ jsx(
49736
- GameCanvas2D,
49737
- {
49738
- backgroundImage,
49739
- assetBaseUrl,
49740
- width,
49741
- height,
49742
- fps
49743
- }
49744
- )
49745
- ] });
49757
+ return /* @__PURE__ */ jsx("div", { className: cn("space-shmup-board relative w-full h-full", className), children: /* @__PURE__ */ jsx(
49758
+ IsometricCanvas_default,
49759
+ {
49760
+ tileLayout: "flat",
49761
+ tiles,
49762
+ units,
49763
+ features,
49764
+ assetManifest,
49765
+ assetBaseUrl,
49766
+ scale,
49767
+ showMinimap,
49768
+ enableCamera,
49769
+ tileClickEvent,
49770
+ unitClickEvent,
49771
+ isLoading,
49772
+ error
49773
+ }
49774
+ ) });
49746
49775
  }
49747
49776
  var init_SpaceShmupBoard = __esm({
49748
49777
  "components/game/organisms/SpaceShmupBoard.tsx"() {
49749
49778
  "use client";
49750
49779
  init_cn();
49751
- init_GameCanvas2D();
49780
+ init_IsometricCanvas();
49752
49781
  SpaceShmupBoard.displayName = "SpaceShmupBoard";
49753
49782
  }
49754
49783
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@almadar/ui",
3
- "version": "5.69.0",
3
+ "version": "5.70.0",
4
4
  "description": "React UI components, hooks, and providers for Almadar",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -33,8 +33,8 @@
33
33
  --border-width-thick: 2px;
34
34
 
35
35
  /* Colors - Teal on parchment */
36
- --color-primary: #14b8a6;
37
- --color-primary-hover: #0d9488;
36
+ --color-primary: #0f766e;
37
+ --color-primary-hover: #115e59;
38
38
  --color-primary-foreground: #ffffff;
39
39
 
40
40
  --color-secondary: #f1f5f9;
@@ -35,8 +35,8 @@
35
35
  --border-width-thick: 2px;
36
36
 
37
37
  /* Colors - Teal on light background */
38
- --color-primary: #14b8a6;
39
- --color-primary-hover: #0d9488;
38
+ --color-primary: #0f766e;
39
+ --color-primary-hover: #115e59;
40
40
  --color-primary-foreground: #ffffff;
41
41
 
42
42
  --color-secondary: #f1f5f9;
package/themes/arctic.css CHANGED
@@ -36,8 +36,8 @@
36
36
  --border-width-thick: 2px;
37
37
 
38
38
  /* Colors - Ice blue, cool and clean */
39
- --color-primary: #0284c7;
40
- --color-primary-hover: #0369a1;
39
+ --color-primary: #0369a1;
40
+ --color-primary-hover: #075985;
41
41
  --color-primary-foreground: #ffffff;
42
42
 
43
43
  --color-secondary: #e0f2fe;
package/themes/kiosk.css CHANGED
@@ -35,8 +35,8 @@
35
35
  --border-width-thick: 3px;
36
36
 
37
37
  /* Colors - Warm white background, saturated coral primary */
38
- --color-primary: #ff5a4f;
39
- --color-primary-hover: #e8483e;
38
+ --color-primary: #dc2626;
39
+ --color-primary-hover: #b91c1c;
40
40
  --color-primary-foreground: #ffffff;
41
41
 
42
42
  --color-secondary: #fff1ef;
@@ -147,9 +147,9 @@
147
147
  --border-width-thick: 2px;
148
148
 
149
149
  /* Colors - Deep purple dark mode */
150
- --color-primary: #a78bfa;
151
- --color-primary-hover: #c4b5fd;
152
- --color-primary-foreground: #2e1065;
150
+ --color-primary: #7c3aed;
151
+ --color-primary-hover: #6d28d9;
152
+ --color-primary-foreground: #ffffff;
153
153
 
154
154
  --color-secondary: #1a0d30;
155
155
  --color-secondary-hover: #251445;
@@ -35,8 +35,8 @@
35
35
  --border-width-thick: 2px;
36
36
 
37
37
  /* Colors - Indigo palette, sophisticated */
38
- --color-primary: #6366f1;
39
- --color-primary-hover: #4f46e5;
38
+ --color-primary: #4f46e5;
39
+ --color-primary-hover: #4338ca;
40
40
  --color-primary-foreground: #ffffff;
41
41
 
42
42
  --color-secondary: #eef2ff;
package/themes/neon.css CHANGED
@@ -37,8 +37,8 @@
37
37
  --border-width-thick: 3px;
38
38
 
39
39
  /* Colors - Teal-tinted light mode */
40
- --color-primary: #0891b2;
41
- --color-primary-hover: #0e7490;
40
+ --color-primary: #0e7490;
41
+ --color-primary-hover: #155e75;
42
42
  --color-primary-foreground: #ffffff;
43
43
 
44
44
  --color-secondary: #ccfbf1;
@@ -39,8 +39,8 @@
39
39
  --border-width-thin: 1px;
40
40
  --border-width-thick: 1px;
41
41
 
42
- --color-primary: #ff6b35;
43
- --color-primary-hover: #e55a26;
42
+ --color-primary: #c2410c;
43
+ --color-primary-hover: #9a3412;
44
44
  --color-primary-foreground: #fefdf9;
45
45
 
46
46
  --color-secondary: #f4f1ea;