pixelplay 1.0.5 → 1.0.7
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/index.d.mts +195 -1
- package/dist/index.d.ts +195 -1
- package/dist/index.js +1558 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1555 -0
- package/dist/index.mjs.map +1 -1
- package/dist/server.d.mts +195 -0
- package/dist/server.d.ts +195 -0
- package/dist/server.js +1586 -0
- package/dist/server.js.map +1 -0
- package/dist/server.mjs +1557 -0
- package/dist/server.mjs.map +1 -0
- package/package.json +6 -1
package/dist/index.js
CHANGED
|
@@ -129,8 +129,11 @@ __export(index_exports, {
|
|
|
129
129
|
Tooltip: () => Tooltip,
|
|
130
130
|
TooltipTrigger: () => TooltipTrigger,
|
|
131
131
|
cn: () => cn,
|
|
132
|
+
darkTheme: () => darkTheme,
|
|
133
|
+
generateThemeCSS: () => generateThemeCSS,
|
|
132
134
|
getFileExtColor: () => getFileExtColor,
|
|
133
135
|
getFileExtLabel: () => getFileExtLabel,
|
|
136
|
+
lightTheme: () => lightTheme,
|
|
134
137
|
useToast: () => useToast
|
|
135
138
|
});
|
|
136
139
|
module.exports = __toCommonJS(index_exports);
|
|
@@ -22441,6 +22444,1558 @@ function CountryFlag({
|
|
|
22441
22444
|
);
|
|
22442
22445
|
}
|
|
22443
22446
|
|
|
22447
|
+
// ../../app/ui-kit/pixelplay-ui/shared/config/tokens.ts
|
|
22448
|
+
var colors = {
|
|
22449
|
+
// ── Semantic / role colors ────────────────────────────────────────────────
|
|
22450
|
+
// Curated shades for their specific UI role (slightly tuned vs. raw palette).
|
|
22451
|
+
// brand → purple family | error → red family | warning → amber family
|
|
22452
|
+
// success → green family | neutral base → gray
|
|
22453
|
+
brand: {
|
|
22454
|
+
25: "#FCFAFF",
|
|
22455
|
+
50: "#F9F5FF",
|
|
22456
|
+
100: "#F4EBFF",
|
|
22457
|
+
200: "#E9D7FE",
|
|
22458
|
+
300: "#D6BBFB",
|
|
22459
|
+
400: "#B692F6",
|
|
22460
|
+
500: "#9E77ED",
|
|
22461
|
+
600: "#7F56D9",
|
|
22462
|
+
700: "#6941C6",
|
|
22463
|
+
800: "#53389E",
|
|
22464
|
+
900: "#42307D",
|
|
22465
|
+
950: "#26145A",
|
|
22466
|
+
975: "#160C34"
|
|
22467
|
+
},
|
|
22468
|
+
error: {
|
|
22469
|
+
25: "#FFFBFA",
|
|
22470
|
+
50: "#FEF3F2",
|
|
22471
|
+
100: "#FEE4E2",
|
|
22472
|
+
200: "#FECDCA",
|
|
22473
|
+
300: "#FDA29B",
|
|
22474
|
+
400: "#F97066",
|
|
22475
|
+
500: "#F04438",
|
|
22476
|
+
600: "#D92D20",
|
|
22477
|
+
700: "#B42318",
|
|
22478
|
+
800: "#912018",
|
|
22479
|
+
900: "#7A271A",
|
|
22480
|
+
950: "#4C1108",
|
|
22481
|
+
975: "#2B0904"
|
|
22482
|
+
},
|
|
22483
|
+
warning: {
|
|
22484
|
+
25: "#FFFCF5",
|
|
22485
|
+
50: "#FFFAEB",
|
|
22486
|
+
100: "#FEF0C7",
|
|
22487
|
+
200: "#FEDF89",
|
|
22488
|
+
300: "#FEC84B",
|
|
22489
|
+
400: "#FDB022",
|
|
22490
|
+
500: "#F79009",
|
|
22491
|
+
600: "#DC6803",
|
|
22492
|
+
700: "#B54708",
|
|
22493
|
+
800: "#93370D",
|
|
22494
|
+
900: "#7A2E0E",
|
|
22495
|
+
950: "#491A06",
|
|
22496
|
+
975: "#291003"
|
|
22497
|
+
},
|
|
22498
|
+
success: {
|
|
22499
|
+
25: "#F6FEF9",
|
|
22500
|
+
50: "#ECFDF3",
|
|
22501
|
+
100: "#D1FADF",
|
|
22502
|
+
200: "#A6F4C5",
|
|
22503
|
+
300: "#6CE9A6",
|
|
22504
|
+
400: "#32D583",
|
|
22505
|
+
500: "#12B76A",
|
|
22506
|
+
600: "#039855",
|
|
22507
|
+
700: "#027A48",
|
|
22508
|
+
800: "#05603A",
|
|
22509
|
+
900: "#054F31",
|
|
22510
|
+
950: "#03301E",
|
|
22511
|
+
975: "#021C11"
|
|
22512
|
+
},
|
|
22513
|
+
// ── Neutrals ──────────────────────────────────────────────────────────────
|
|
22514
|
+
gray: {
|
|
22515
|
+
25: "#FDFDFD",
|
|
22516
|
+
50: "#FAFAFA",
|
|
22517
|
+
100: "#F5F5F5",
|
|
22518
|
+
200: "#E9EAEB",
|
|
22519
|
+
300: "#D5D7DA",
|
|
22520
|
+
400: "#A4A7AE",
|
|
22521
|
+
500: "#717680",
|
|
22522
|
+
600: "#535862",
|
|
22523
|
+
700: "#414651",
|
|
22524
|
+
800: "#252B37",
|
|
22525
|
+
900: "#101828",
|
|
22526
|
+
950: "#090E18",
|
|
22527
|
+
975: "#05080E"
|
|
22528
|
+
},
|
|
22529
|
+
slate: {
|
|
22530
|
+
25: "#FCFCFE",
|
|
22531
|
+
50: "#F8FAFC",
|
|
22532
|
+
100: "#F1F5F9",
|
|
22533
|
+
200: "#E2E8F0",
|
|
22534
|
+
300: "#CBD5E1",
|
|
22535
|
+
400: "#94A3B8",
|
|
22536
|
+
500: "#64748B",
|
|
22537
|
+
600: "#475569",
|
|
22538
|
+
700: "#334155",
|
|
22539
|
+
800: "#1E293B",
|
|
22540
|
+
900: "#0F172A",
|
|
22541
|
+
950: "#090D19",
|
|
22542
|
+
975: "#05070E"
|
|
22543
|
+
},
|
|
22544
|
+
zinc: {
|
|
22545
|
+
25: "#FAFAFB",
|
|
22546
|
+
50: "#FAFAFA",
|
|
22547
|
+
100: "#F4F4F5",
|
|
22548
|
+
200: "#E4E4E7",
|
|
22549
|
+
300: "#D4D4D8",
|
|
22550
|
+
400: "#A1A1AA",
|
|
22551
|
+
500: "#71717A",
|
|
22552
|
+
600: "#52525B",
|
|
22553
|
+
700: "#3F3F46",
|
|
22554
|
+
800: "#27272A",
|
|
22555
|
+
900: "#18181B",
|
|
22556
|
+
950: "#0E0E10",
|
|
22557
|
+
975: "#080809"
|
|
22558
|
+
},
|
|
22559
|
+
stone: {
|
|
22560
|
+
25: "#FAFAF9",
|
|
22561
|
+
50: "#FAFAF9",
|
|
22562
|
+
100: "#F5F5F4",
|
|
22563
|
+
200: "#E7E5E4",
|
|
22564
|
+
300: "#D6D3D1",
|
|
22565
|
+
400: "#A8A29E",
|
|
22566
|
+
500: "#78716C",
|
|
22567
|
+
600: "#57534E",
|
|
22568
|
+
700: "#44403C",
|
|
22569
|
+
800: "#292524",
|
|
22570
|
+
900: "#1C1917",
|
|
22571
|
+
950: "#110F0D",
|
|
22572
|
+
975: "#090807"
|
|
22573
|
+
},
|
|
22574
|
+
// ── Reds & oranges ────────────────────────────────────────────────────────
|
|
22575
|
+
red: {
|
|
22576
|
+
25: "#FFF5F5",
|
|
22577
|
+
50: "#FEF2F2",
|
|
22578
|
+
100: "#FEE2E2",
|
|
22579
|
+
200: "#FECACA",
|
|
22580
|
+
300: "#FCA5A5",
|
|
22581
|
+
400: "#F87171",
|
|
22582
|
+
500: "#EF4444",
|
|
22583
|
+
600: "#DC2626",
|
|
22584
|
+
700: "#B91C1C",
|
|
22585
|
+
800: "#991B1B",
|
|
22586
|
+
900: "#7F1D1D",
|
|
22587
|
+
950: "#4C1111",
|
|
22588
|
+
975: "#2B0909"
|
|
22589
|
+
},
|
|
22590
|
+
orange: {
|
|
22591
|
+
25: "#FFFAF5",
|
|
22592
|
+
50: "#FFF6ED",
|
|
22593
|
+
100: "#FFEAD5",
|
|
22594
|
+
200: "#FDDCAB",
|
|
22595
|
+
300: "#FEB273",
|
|
22596
|
+
400: "#FD853A",
|
|
22597
|
+
500: "#FB6514",
|
|
22598
|
+
600: "#EC4A0A",
|
|
22599
|
+
700: "#C4320A",
|
|
22600
|
+
800: "#9C2A10",
|
|
22601
|
+
900: "#7E2410",
|
|
22602
|
+
950: "#4C1509",
|
|
22603
|
+
975: "#2B0C05"
|
|
22604
|
+
},
|
|
22605
|
+
amber: {
|
|
22606
|
+
25: "#FFFDF5",
|
|
22607
|
+
50: "#FFFBEB",
|
|
22608
|
+
100: "#FEF3C7",
|
|
22609
|
+
200: "#FDE68A",
|
|
22610
|
+
300: "#FCD34D",
|
|
22611
|
+
400: "#FBBF24",
|
|
22612
|
+
500: "#F59E0B",
|
|
22613
|
+
600: "#D97706",
|
|
22614
|
+
700: "#B45309",
|
|
22615
|
+
800: "#92400E",
|
|
22616
|
+
900: "#78350F",
|
|
22617
|
+
950: "#471E07",
|
|
22618
|
+
975: "#280F03"
|
|
22619
|
+
},
|
|
22620
|
+
yellow: {
|
|
22621
|
+
25: "#FEFEF2",
|
|
22622
|
+
50: "#FEFCE8",
|
|
22623
|
+
100: "#FEF9C3",
|
|
22624
|
+
200: "#FEF08A",
|
|
22625
|
+
300: "#FDE047",
|
|
22626
|
+
400: "#FACC15",
|
|
22627
|
+
500: "#EAB308",
|
|
22628
|
+
600: "#CA8A04",
|
|
22629
|
+
700: "#A16207",
|
|
22630
|
+
800: "#854D0E",
|
|
22631
|
+
900: "#713F12",
|
|
22632
|
+
950: "#44250A",
|
|
22633
|
+
975: "#261505"
|
|
22634
|
+
},
|
|
22635
|
+
// ── Greens ────────────────────────────────────────────────────────────────
|
|
22636
|
+
lime: {
|
|
22637
|
+
25: "#FBFFE7",
|
|
22638
|
+
50: "#F7FEE7",
|
|
22639
|
+
100: "#ECFCCB",
|
|
22640
|
+
200: "#D9F99D",
|
|
22641
|
+
300: "#BEF264",
|
|
22642
|
+
400: "#A3E635",
|
|
22643
|
+
500: "#84CC16",
|
|
22644
|
+
600: "#65A30D",
|
|
22645
|
+
700: "#4D7C0F",
|
|
22646
|
+
800: "#3F6212",
|
|
22647
|
+
900: "#365314",
|
|
22648
|
+
950: "#20320C",
|
|
22649
|
+
975: "#121C06"
|
|
22650
|
+
},
|
|
22651
|
+
green: {
|
|
22652
|
+
25: "#F2FDF5",
|
|
22653
|
+
50: "#F0FDF4",
|
|
22654
|
+
100: "#DCFCE7",
|
|
22655
|
+
200: "#BBF7D0",
|
|
22656
|
+
300: "#86EFAC",
|
|
22657
|
+
400: "#4ADE80",
|
|
22658
|
+
500: "#22C55E",
|
|
22659
|
+
600: "#16A34A",
|
|
22660
|
+
700: "#15803D",
|
|
22661
|
+
800: "#166534",
|
|
22662
|
+
900: "#14532D",
|
|
22663
|
+
950: "#0C321B",
|
|
22664
|
+
975: "#061C0F"
|
|
22665
|
+
},
|
|
22666
|
+
emerald: {
|
|
22667
|
+
25: "#F3FDF8",
|
|
22668
|
+
50: "#ECFDF5",
|
|
22669
|
+
100: "#D1FAE5",
|
|
22670
|
+
200: "#A7F3D0",
|
|
22671
|
+
300: "#6EE7B7",
|
|
22672
|
+
400: "#34D399",
|
|
22673
|
+
500: "#10B981",
|
|
22674
|
+
600: "#059669",
|
|
22675
|
+
700: "#047857",
|
|
22676
|
+
800: "#065F46",
|
|
22677
|
+
900: "#064E3B",
|
|
22678
|
+
950: "#032F23",
|
|
22679
|
+
975: "#021A13"
|
|
22680
|
+
},
|
|
22681
|
+
teal: {
|
|
22682
|
+
25: "#F0FCFB",
|
|
22683
|
+
50: "#F0FDFA",
|
|
22684
|
+
100: "#CCFBF1",
|
|
22685
|
+
200: "#99F6E4",
|
|
22686
|
+
300: "#5EEAD4",
|
|
22687
|
+
400: "#2DD4BF",
|
|
22688
|
+
500: "#14B8A6",
|
|
22689
|
+
600: "#0D9488",
|
|
22690
|
+
700: "#0F766E",
|
|
22691
|
+
800: "#115E59",
|
|
22692
|
+
900: "#134E4A",
|
|
22693
|
+
950: "#0A302E",
|
|
22694
|
+
975: "#061C1A"
|
|
22695
|
+
},
|
|
22696
|
+
// ── Blues ─────────────────────────────────────────────────────────────────
|
|
22697
|
+
cyan: {
|
|
22698
|
+
25: "#F0FEFF",
|
|
22699
|
+
50: "#ECFEFF",
|
|
22700
|
+
100: "#CFFAFE",
|
|
22701
|
+
200: "#A5F3FC",
|
|
22702
|
+
300: "#67E8F9",
|
|
22703
|
+
400: "#22D3EE",
|
|
22704
|
+
500: "#06B6D4",
|
|
22705
|
+
600: "#0891B2",
|
|
22706
|
+
700: "#0E7490",
|
|
22707
|
+
800: "#155E75",
|
|
22708
|
+
900: "#164E63",
|
|
22709
|
+
950: "#0C2F3C",
|
|
22710
|
+
975: "#071A22"
|
|
22711
|
+
},
|
|
22712
|
+
blueLight: {
|
|
22713
|
+
25: "#F5FBFF",
|
|
22714
|
+
50: "#F0F9FF",
|
|
22715
|
+
100: "#E0F2FE",
|
|
22716
|
+
200: "#B9E6FE",
|
|
22717
|
+
300: "#7CD4FD",
|
|
22718
|
+
400: "#36BFFA",
|
|
22719
|
+
500: "#0BA5EC",
|
|
22720
|
+
600: "#0086C9",
|
|
22721
|
+
700: "#026AA2",
|
|
22722
|
+
800: "#065986",
|
|
22723
|
+
900: "#0B4A6F",
|
|
22724
|
+
950: "#062C43",
|
|
22725
|
+
975: "#031826"
|
|
22726
|
+
},
|
|
22727
|
+
blue: {
|
|
22728
|
+
25: "#F5FAFF",
|
|
22729
|
+
50: "#EFF8FF",
|
|
22730
|
+
100: "#D1E9FF",
|
|
22731
|
+
200: "#B2DDFF",
|
|
22732
|
+
300: "#84CAFF",
|
|
22733
|
+
400: "#53B1FD",
|
|
22734
|
+
500: "#2E90FA",
|
|
22735
|
+
600: "#1570EF",
|
|
22736
|
+
700: "#175CD3",
|
|
22737
|
+
800: "#1849A9",
|
|
22738
|
+
900: "#194185",
|
|
22739
|
+
950: "#0E2669",
|
|
22740
|
+
975: "#08153B"
|
|
22741
|
+
},
|
|
22742
|
+
blueGray: {
|
|
22743
|
+
25: "#FCFCFD",
|
|
22744
|
+
50: "#F8F9FC",
|
|
22745
|
+
100: "#EAECF5",
|
|
22746
|
+
200: "#D5D9EB",
|
|
22747
|
+
300: "#AFB5D9",
|
|
22748
|
+
400: "#717BBC",
|
|
22749
|
+
500: "#4E5BA6",
|
|
22750
|
+
600: "#3E4784",
|
|
22751
|
+
700: "#363F72",
|
|
22752
|
+
800: "#293056",
|
|
22753
|
+
900: "#101323",
|
|
22754
|
+
950: "#090B15",
|
|
22755
|
+
975: "#05060B"
|
|
22756
|
+
},
|
|
22757
|
+
// ── Purples & pinks ───────────────────────────────────────────────────────
|
|
22758
|
+
indigo: {
|
|
22759
|
+
25: "#F5F8FF",
|
|
22760
|
+
50: "#EEF4FF",
|
|
22761
|
+
100: "#E0EAFF",
|
|
22762
|
+
200: "#C7D7FE",
|
|
22763
|
+
300: "#A4BCFD",
|
|
22764
|
+
400: "#8098F9",
|
|
22765
|
+
500: "#6172F3",
|
|
22766
|
+
600: "#444CE7",
|
|
22767
|
+
700: "#3538CD",
|
|
22768
|
+
800: "#2D31A6",
|
|
22769
|
+
900: "#2D3282",
|
|
22770
|
+
950: "#1B1F52",
|
|
22771
|
+
975: "#10122F"
|
|
22772
|
+
},
|
|
22773
|
+
violet: {
|
|
22774
|
+
25: "#FAFAFF",
|
|
22775
|
+
50: "#F5F3FF",
|
|
22776
|
+
100: "#EDE9FE",
|
|
22777
|
+
200: "#DDD6FE",
|
|
22778
|
+
300: "#C4B5FD",
|
|
22779
|
+
400: "#A78BFA",
|
|
22780
|
+
500: "#8B5CF6",
|
|
22781
|
+
600: "#7C3AED",
|
|
22782
|
+
700: "#6D28D9",
|
|
22783
|
+
800: "#5B21B6",
|
|
22784
|
+
900: "#4C1D95",
|
|
22785
|
+
950: "#2D1159",
|
|
22786
|
+
975: "#190932"
|
|
22787
|
+
},
|
|
22788
|
+
purple: {
|
|
22789
|
+
25: "#FAFAFF",
|
|
22790
|
+
50: "#F4F3FF",
|
|
22791
|
+
100: "#EBE9FE",
|
|
22792
|
+
200: "#D9D6FE",
|
|
22793
|
+
300: "#BDB4FE",
|
|
22794
|
+
400: "#9B8AFB",
|
|
22795
|
+
500: "#7A5AF8",
|
|
22796
|
+
600: "#6938EF",
|
|
22797
|
+
700: "#5925DC",
|
|
22798
|
+
800: "#4A1FB8",
|
|
22799
|
+
900: "#3E1C96",
|
|
22800
|
+
950: "#25105A",
|
|
22801
|
+
975: "#140932"
|
|
22802
|
+
},
|
|
22803
|
+
fuchsia: {
|
|
22804
|
+
25: "#FEF8FF",
|
|
22805
|
+
50: "#FDF4FF",
|
|
22806
|
+
100: "#FAE8FF",
|
|
22807
|
+
200: "#F5D0FE",
|
|
22808
|
+
300: "#F0ABFC",
|
|
22809
|
+
400: "#E879F9",
|
|
22810
|
+
500: "#D946EF",
|
|
22811
|
+
600: "#C026D3",
|
|
22812
|
+
700: "#A21CAF",
|
|
22813
|
+
800: "#86198F",
|
|
22814
|
+
900: "#701A75",
|
|
22815
|
+
950: "#430F46",
|
|
22816
|
+
975: "#250827"
|
|
22817
|
+
},
|
|
22818
|
+
pink: {
|
|
22819
|
+
25: "#FEF6FB",
|
|
22820
|
+
50: "#FDF2FA",
|
|
22821
|
+
100: "#FCE7F6",
|
|
22822
|
+
200: "#FCCEEE",
|
|
22823
|
+
300: "#FAA7E0",
|
|
22824
|
+
400: "#F670C7",
|
|
22825
|
+
500: "#EE46BC",
|
|
22826
|
+
600: "#DD2590",
|
|
22827
|
+
700: "#C11574",
|
|
22828
|
+
800: "#9E165F",
|
|
22829
|
+
900: "#851651",
|
|
22830
|
+
950: "#4F0C30",
|
|
22831
|
+
975: "#2C071A"
|
|
22832
|
+
},
|
|
22833
|
+
rose: {
|
|
22834
|
+
25: "#FFF5F6",
|
|
22835
|
+
50: "#FFF1F3",
|
|
22836
|
+
100: "#FFE4E8",
|
|
22837
|
+
200: "#FECDD6",
|
|
22838
|
+
300: "#FEA3B4",
|
|
22839
|
+
400: "#FD6F8E",
|
|
22840
|
+
500: "#F63D68",
|
|
22841
|
+
600: "#E31B54",
|
|
22842
|
+
700: "#C01048",
|
|
22843
|
+
800: "#A11043",
|
|
22844
|
+
900: "#89123E",
|
|
22845
|
+
950: "#520A25",
|
|
22846
|
+
975: "#2E0514"
|
|
22847
|
+
}
|
|
22848
|
+
};
|
|
22849
|
+
var textScale = {
|
|
22850
|
+
xl: { fontSize: "1.25rem", lineHeight: "1.875rem", letterSpacing: "0em" },
|
|
22851
|
+
// 20px / 30px
|
|
22852
|
+
lg: { fontSize: "1.125rem", lineHeight: "1.75rem", letterSpacing: "0em" },
|
|
22853
|
+
// 18px / 28px
|
|
22854
|
+
md: { fontSize: "1rem", lineHeight: "1.5rem", letterSpacing: "0em" },
|
|
22855
|
+
// 16px / 24px
|
|
22856
|
+
sm: { fontSize: "0.875rem", lineHeight: "1.25rem", letterSpacing: "0em" },
|
|
22857
|
+
// 14px / 20px
|
|
22858
|
+
xs: { fontSize: "0.75rem", lineHeight: "1.125rem", letterSpacing: "0em" }
|
|
22859
|
+
// 12px / 18px
|
|
22860
|
+
};
|
|
22861
|
+
var fontSizes = {
|
|
22862
|
+
xs: textScale.xs.fontSize,
|
|
22863
|
+
sm: textScale.sm.fontSize,
|
|
22864
|
+
md: textScale.md.fontSize,
|
|
22865
|
+
lg: textScale.lg.fontSize,
|
|
22866
|
+
xl: textScale.xl.fontSize
|
|
22867
|
+
};
|
|
22868
|
+
|
|
22869
|
+
// ../../app/ui-kit/pixelplay-ui/shared/config/themes/rosewood.ts
|
|
22870
|
+
var rosewoodLightTheme = {
|
|
22871
|
+
// Surfaces — warm blush tones
|
|
22872
|
+
surface: colors.rose[25],
|
|
22873
|
+
"surface-dim": colors.rose[50],
|
|
22874
|
+
"surface-bright": "#FFFFFF",
|
|
22875
|
+
"surface-container-lowest": "#FFFFFF",
|
|
22876
|
+
"surface-container-low": colors.rose[25],
|
|
22877
|
+
"surface-container": colors.rose[50],
|
|
22878
|
+
"surface-container-high": colors.rose[100],
|
|
22879
|
+
"surface-container-highest": colors.rose[200],
|
|
22880
|
+
// Content
|
|
22881
|
+
"on-surface": colors.stone[900],
|
|
22882
|
+
"on-surface-variant": colors.stone[600],
|
|
22883
|
+
"inverse-surface": colors.stone[900],
|
|
22884
|
+
"inverse-on-surface": colors.rose[25],
|
|
22885
|
+
// Primary — rich rosewood pink (600 for contrast against blush surfaces)
|
|
22886
|
+
primary: colors.red[400],
|
|
22887
|
+
"on-primary": "#FFFFFF",
|
|
22888
|
+
"primary-container": colors.rose[100],
|
|
22889
|
+
"on-primary-container": colors.rose[800],
|
|
22890
|
+
"inverse-primary": colors.rose[300],
|
|
22891
|
+
// Secondary — deep burgundy
|
|
22892
|
+
secondary: colors.red[700],
|
|
22893
|
+
"on-secondary": "#FFFFFF",
|
|
22894
|
+
"secondary-container": colors.rose[200],
|
|
22895
|
+
"on-secondary-container": colors.red[900],
|
|
22896
|
+
// Tertiary — dusty rose gold
|
|
22897
|
+
tertiary: colors.pink[400],
|
|
22898
|
+
"on-tertiary": "#FFFFFF",
|
|
22899
|
+
"tertiary-container": colors.pink[100],
|
|
22900
|
+
"on-tertiary-container": colors.pink[800],
|
|
22901
|
+
// Utility
|
|
22902
|
+
outline: colors.rose[300],
|
|
22903
|
+
"outline-variant": colors.rose[200],
|
|
22904
|
+
scrim: "rgba(68,44,46,0.4)",
|
|
22905
|
+
shadow: "rgba(68,44,46,0.08)",
|
|
22906
|
+
// Feedback
|
|
22907
|
+
error: colors.error[500],
|
|
22908
|
+
"on-error": "#FFFFFF",
|
|
22909
|
+
"error-container": colors.error[100],
|
|
22910
|
+
"on-error-container": colors.error[800],
|
|
22911
|
+
success: colors.success[500],
|
|
22912
|
+
"on-success": "#FFFFFF",
|
|
22913
|
+
"success-container": colors.success[100],
|
|
22914
|
+
"on-success-container": colors.success[800],
|
|
22915
|
+
warning: colors.warning[500],
|
|
22916
|
+
"on-warning": "#FFFFFF",
|
|
22917
|
+
"warning-container": colors.warning[100],
|
|
22918
|
+
"on-warning-container": colors.warning[800],
|
|
22919
|
+
info: colors.blue[500],
|
|
22920
|
+
"on-info": "#FFFFFF",
|
|
22921
|
+
"info-container": colors.blue[100],
|
|
22922
|
+
"on-info-container": colors.blue[800],
|
|
22923
|
+
// States
|
|
22924
|
+
"surface-tint": colors.rose[200],
|
|
22925
|
+
"state-hover": "rgba(68,44,46,0.06)",
|
|
22926
|
+
"state-focus": "rgba(68,44,46,0.10)",
|
|
22927
|
+
"state-pressed": "rgba(68,44,46,0.10)",
|
|
22928
|
+
"state-dragged": "rgba(68,44,46,0.14)",
|
|
22929
|
+
"state-disabled": "rgba(68,44,46,0.38)",
|
|
22930
|
+
// Categorical
|
|
22931
|
+
"graphic-1": colors.pink[400],
|
|
22932
|
+
"graphic-2": colors.red[700],
|
|
22933
|
+
"graphic-3": colors.warning[500],
|
|
22934
|
+
"graphic-4": colors.success[500],
|
|
22935
|
+
"graphic-5": colors.orange[500],
|
|
22936
|
+
"graphic-6": colors.error[500],
|
|
22937
|
+
"graphic-7": colors.blue[500],
|
|
22938
|
+
"graphic-8": colors.pink[600],
|
|
22939
|
+
"graphic-9": colors.amber[500],
|
|
22940
|
+
"graphic-10": colors.slate[500],
|
|
22941
|
+
"on-graphic": "#FFFFFF",
|
|
22942
|
+
"graphic-1-container": colors.pink[50],
|
|
22943
|
+
"graphic-2-container": colors.red[50],
|
|
22944
|
+
"graphic-3-container": colors.warning[50],
|
|
22945
|
+
"graphic-4-container": colors.success[50],
|
|
22946
|
+
"graphic-5-container": colors.orange[50],
|
|
22947
|
+
"graphic-6-container": colors.error[50],
|
|
22948
|
+
"graphic-7-container": colors.blue[50],
|
|
22949
|
+
"graphic-8-container": colors.pink[50],
|
|
22950
|
+
"graphic-9-container": colors.amber[50],
|
|
22951
|
+
"graphic-10-container": colors.slate[50],
|
|
22952
|
+
"on-graphic-1-container": colors.pink[800],
|
|
22953
|
+
"on-graphic-2-container": colors.red[800],
|
|
22954
|
+
"on-graphic-3-container": colors.warning[800],
|
|
22955
|
+
"on-graphic-4-container": colors.success[800],
|
|
22956
|
+
"on-graphic-5-container": colors.orange[800],
|
|
22957
|
+
"on-graphic-6-container": colors.error[800],
|
|
22958
|
+
"on-graphic-7-container": colors.blue[800],
|
|
22959
|
+
"on-graphic-8-container": colors.pink[800],
|
|
22960
|
+
"on-graphic-9-container": colors.amber[800],
|
|
22961
|
+
"on-graphic-10-container": colors.slate[800],
|
|
22962
|
+
// Status
|
|
22963
|
+
"status-positive": colors.success[500],
|
|
22964
|
+
"status-warning": colors.warning[500],
|
|
22965
|
+
"status-negative": colors.red[700],
|
|
22966
|
+
"status-neutral": colors.stone[400],
|
|
22967
|
+
// Progress
|
|
22968
|
+
"progress-track": colors.rose[200],
|
|
22969
|
+
"progress-indicator": colors.red[700],
|
|
22970
|
+
"progress-buffer": colors.pink[400],
|
|
22971
|
+
// Scales
|
|
22972
|
+
"scale-low": colors.success[500],
|
|
22973
|
+
"scale-medium": colors.warning[500],
|
|
22974
|
+
"scale-high": colors.red[700],
|
|
22975
|
+
// Infrastructure
|
|
22976
|
+
"graphic-outline": colors.rose[300],
|
|
22977
|
+
"graphic-divider": colors.rose[200],
|
|
22978
|
+
"graphic-label": colors.stone[600],
|
|
22979
|
+
"graphic-marker": colors.red[700],
|
|
22980
|
+
// Overlays
|
|
22981
|
+
"graphic-hover": colors.rose[100],
|
|
22982
|
+
"graphic-muted": colors.rose[200],
|
|
22983
|
+
"annotation-line": colors.stone[400]
|
|
22984
|
+
};
|
|
22985
|
+
var rosewoodDarkTheme = {
|
|
22986
|
+
// Surfaces — deep burgundy-charcoal
|
|
22987
|
+
surface: colors.stone[900],
|
|
22988
|
+
"surface-dim": colors.stone[950],
|
|
22989
|
+
"surface-bright": colors.stone[800],
|
|
22990
|
+
"surface-container-lowest": colors.stone[950],
|
|
22991
|
+
"surface-container-low": colors.stone[900],
|
|
22992
|
+
"surface-container": colors.stone[800],
|
|
22993
|
+
"surface-container-high": colors.stone[700],
|
|
22994
|
+
"surface-container-highest": colors.stone[600],
|
|
22995
|
+
// Content
|
|
22996
|
+
"on-surface": colors.rose[25],
|
|
22997
|
+
"on-surface-variant": colors.rose[300],
|
|
22998
|
+
"inverse-surface": colors.rose[25],
|
|
22999
|
+
"inverse-on-surface": colors.stone[900],
|
|
23000
|
+
// Primary — warm pink lighter for dark bg
|
|
23001
|
+
primary: colors.rose[200],
|
|
23002
|
+
"on-primary": colors.stone[900],
|
|
23003
|
+
"primary-container": colors.stone[700],
|
|
23004
|
+
"on-primary-container": colors.rose[200],
|
|
23005
|
+
"inverse-primary": colors.red[700],
|
|
23006
|
+
// Secondary
|
|
23007
|
+
secondary: colors.rose[300],
|
|
23008
|
+
"on-secondary": colors.red[950],
|
|
23009
|
+
"secondary-container": colors.red[900],
|
|
23010
|
+
"on-secondary-container": colors.rose[200],
|
|
23011
|
+
// Tertiary
|
|
23012
|
+
tertiary: colors.pink[300],
|
|
23013
|
+
"on-tertiary": colors.pink[950],
|
|
23014
|
+
"tertiary-container": colors.pink[800],
|
|
23015
|
+
"on-tertiary-container": colors.pink[100],
|
|
23016
|
+
// Utility
|
|
23017
|
+
outline: colors.stone[600],
|
|
23018
|
+
"outline-variant": colors.stone[700],
|
|
23019
|
+
scrim: "rgba(255,255,255,0.1)",
|
|
23020
|
+
shadow: "rgba(0,0,0,0.3)",
|
|
23021
|
+
// Feedback
|
|
23022
|
+
error: colors.error[400],
|
|
23023
|
+
"on-error": colors.error[900],
|
|
23024
|
+
"error-container": colors.error[950],
|
|
23025
|
+
"on-error-container": colors.error[100],
|
|
23026
|
+
success: colors.success[400],
|
|
23027
|
+
"on-success": colors.success[900],
|
|
23028
|
+
"success-container": colors.success[950],
|
|
23029
|
+
"on-success-container": colors.success[100],
|
|
23030
|
+
warning: colors.warning[400],
|
|
23031
|
+
"on-warning": colors.warning[900],
|
|
23032
|
+
"warning-container": colors.warning[950],
|
|
23033
|
+
"on-warning-container": colors.warning[100],
|
|
23034
|
+
info: colors.blue[400],
|
|
23035
|
+
"on-info": colors.blue[900],
|
|
23036
|
+
"info-container": colors.blue[950],
|
|
23037
|
+
"on-info-container": colors.blue[100],
|
|
23038
|
+
// States
|
|
23039
|
+
"surface-tint": colors.rose[200],
|
|
23040
|
+
"state-hover": "rgba(254,219,208,0.08)",
|
|
23041
|
+
"state-focus": "rgba(254,219,208,0.12)",
|
|
23042
|
+
"state-pressed": "rgba(254,219,208,0.12)",
|
|
23043
|
+
"state-dragged": "rgba(254,219,208,0.16)",
|
|
23044
|
+
"state-disabled": "rgba(255,245,243,0.38)",
|
|
23045
|
+
// Categorical
|
|
23046
|
+
"graphic-1": colors.pink[300],
|
|
23047
|
+
"graphic-2": colors.rose[300],
|
|
23048
|
+
"graphic-3": colors.warning[400],
|
|
23049
|
+
"graphic-4": colors.success[400],
|
|
23050
|
+
"graphic-5": colors.orange[400],
|
|
23051
|
+
"graphic-6": colors.error[400],
|
|
23052
|
+
"graphic-7": colors.blue[400],
|
|
23053
|
+
"graphic-8": colors.pink[400],
|
|
23054
|
+
"graphic-9": colors.amber[400],
|
|
23055
|
+
"graphic-10": colors.slate[400],
|
|
23056
|
+
"on-graphic": "#FFFFFF",
|
|
23057
|
+
"graphic-1-container": colors.pink[950],
|
|
23058
|
+
"graphic-2-container": colors.rose[950],
|
|
23059
|
+
"graphic-3-container": colors.warning[950],
|
|
23060
|
+
"graphic-4-container": colors.success[950],
|
|
23061
|
+
"graphic-5-container": colors.orange[950],
|
|
23062
|
+
"graphic-6-container": colors.error[950],
|
|
23063
|
+
"graphic-7-container": colors.blue[950],
|
|
23064
|
+
"graphic-8-container": colors.pink[950],
|
|
23065
|
+
"graphic-9-container": colors.amber[950],
|
|
23066
|
+
"graphic-10-container": colors.slate[950],
|
|
23067
|
+
"on-graphic-1-container": colors.pink[100],
|
|
23068
|
+
"on-graphic-2-container": colors.rose[100],
|
|
23069
|
+
"on-graphic-3-container": colors.warning[100],
|
|
23070
|
+
"on-graphic-4-container": colors.success[100],
|
|
23071
|
+
"on-graphic-5-container": colors.orange[100],
|
|
23072
|
+
"on-graphic-6-container": colors.error[100],
|
|
23073
|
+
"on-graphic-7-container": colors.blue[100],
|
|
23074
|
+
"on-graphic-8-container": colors.pink[100],
|
|
23075
|
+
"on-graphic-9-container": colors.amber[100],
|
|
23076
|
+
"on-graphic-10-container": colors.slate[100],
|
|
23077
|
+
// Status
|
|
23078
|
+
"status-positive": colors.success[400],
|
|
23079
|
+
"status-warning": colors.warning[400],
|
|
23080
|
+
"status-negative": colors.rose[300],
|
|
23081
|
+
"status-neutral": colors.stone[500],
|
|
23082
|
+
// Progress
|
|
23083
|
+
"progress-track": colors.stone[700],
|
|
23084
|
+
"progress-indicator": colors.rose[200],
|
|
23085
|
+
"progress-buffer": colors.stone[600],
|
|
23086
|
+
// Scales
|
|
23087
|
+
"scale-low": colors.success[400],
|
|
23088
|
+
"scale-medium": colors.warning[400],
|
|
23089
|
+
"scale-high": colors.rose[300],
|
|
23090
|
+
// Infrastructure
|
|
23091
|
+
"graphic-outline": colors.stone[600],
|
|
23092
|
+
"graphic-divider": colors.stone[700],
|
|
23093
|
+
"graphic-label": colors.rose[300],
|
|
23094
|
+
"graphic-marker": colors.rose[200],
|
|
23095
|
+
// Overlays
|
|
23096
|
+
"graphic-hover": colors.stone[700],
|
|
23097
|
+
"graphic-muted": colors.stone[700],
|
|
23098
|
+
"annotation-line": colors.stone[500]
|
|
23099
|
+
};
|
|
23100
|
+
var rosewoodTheme = {
|
|
23101
|
+
label: "Rosewood",
|
|
23102
|
+
description: "Elegant fashion & retail",
|
|
23103
|
+
swatch: colors.rose[200],
|
|
23104
|
+
light: rosewoodLightTheme,
|
|
23105
|
+
dark: rosewoodDarkTheme,
|
|
23106
|
+
globals: {
|
|
23107
|
+
"--radius-xs": "0.5rem",
|
|
23108
|
+
"--radius-sm": "0.625rem",
|
|
23109
|
+
"--radius-md": "0.875rem",
|
|
23110
|
+
"--radius-lg": "1.25rem",
|
|
23111
|
+
"--radius-xl": "1.5rem",
|
|
23112
|
+
"--radius-2xl": "2rem",
|
|
23113
|
+
"--radius-3xl": "2.5rem",
|
|
23114
|
+
"--radius-4xl": "3rem",
|
|
23115
|
+
"--font-sans": "'JetBrains Mono', 'Courier New', monospace",
|
|
23116
|
+
"--font-heading": "'JetBrains Mono', 'Courier New', monospace",
|
|
23117
|
+
"--font-body": "'JetBrains Mono', 'Courier New', monospace",
|
|
23118
|
+
"--font-weight-normal": "400",
|
|
23119
|
+
"--font-weight-medium": "500",
|
|
23120
|
+
"--font-weight-semibold": "600",
|
|
23121
|
+
"--font-weight-bold": "700",
|
|
23122
|
+
// ── Typography scale (standard sizes) ──
|
|
23123
|
+
"--text-xs": "0.75rem",
|
|
23124
|
+
"--text-xs--line-height": "1.125rem",
|
|
23125
|
+
"--text-sm": "0.875rem",
|
|
23126
|
+
"--text-sm--line-height": "1.25rem",
|
|
23127
|
+
"--text-base": "1rem",
|
|
23128
|
+
"--text-base--line-height": "1.5rem",
|
|
23129
|
+
"--text-lg": "1.125rem",
|
|
23130
|
+
"--text-lg--line-height": "1.75rem",
|
|
23131
|
+
"--text-xl": "1.25rem",
|
|
23132
|
+
"--text-xl--line-height": "1.875rem",
|
|
23133
|
+
"--text-2xl": "1.5rem",
|
|
23134
|
+
"--text-2xl--line-height": "2rem",
|
|
23135
|
+
"--text-3xl": "1.875rem",
|
|
23136
|
+
"--text-3xl--line-height": "2.375rem",
|
|
23137
|
+
"--text-4xl": "2.25rem",
|
|
23138
|
+
"--text-4xl--line-height": "2.75rem",
|
|
23139
|
+
"--letter-spacing-normal": "0em",
|
|
23140
|
+
"--letter-spacing-tight": "-0.02em",
|
|
23141
|
+
"--shadow-xs": "0 1px 4px 0 rgba(68,44,46,0.04)",
|
|
23142
|
+
"--shadow-sm": "0 2px 8px -1px rgba(68,44,46,0.06)",
|
|
23143
|
+
"--shadow-md": "0 4px 16px -2px rgba(68,44,46,0.06)",
|
|
23144
|
+
"--shadow-lg": "0 8px 28px -4px rgba(68,44,46,0.06)",
|
|
23145
|
+
"--shadow-xl": "0 16px 44px -6px rgba(68,44,46,0.06)",
|
|
23146
|
+
"--shadow-2xl": "0 24px 60px -8px rgba(68,44,46,0.06)"
|
|
23147
|
+
}
|
|
23148
|
+
};
|
|
23149
|
+
|
|
23150
|
+
// ../../app/ui-kit/pixelplay-ui/shared/config/themes/botanica.ts
|
|
23151
|
+
var botanicaLightTheme = {
|
|
23152
|
+
// Surfaces — warm olive-cream
|
|
23153
|
+
surface: colors.yellow[25],
|
|
23154
|
+
"surface-dim": colors.yellow[100],
|
|
23155
|
+
"surface-bright": "#FFFFFF",
|
|
23156
|
+
"surface-container-lowest": "#FFFFFF",
|
|
23157
|
+
"surface-container-low": colors.yellow[50],
|
|
23158
|
+
"surface-container": colors.yellow[100],
|
|
23159
|
+
"surface-container-high": colors.yellow[200],
|
|
23160
|
+
"surface-container-highest": colors.lime[200],
|
|
23161
|
+
// Content
|
|
23162
|
+
"on-surface": colors.emerald[950],
|
|
23163
|
+
"on-surface-variant": colors.emerald[700],
|
|
23164
|
+
"inverse-surface": colors.emerald[950],
|
|
23165
|
+
"inverse-on-surface": colors.lime[50],
|
|
23166
|
+
// Primary — deep herb green
|
|
23167
|
+
primary: colors.emerald[700],
|
|
23168
|
+
"on-primary": "#FFFFFF",
|
|
23169
|
+
"primary-container": colors.emerald[200],
|
|
23170
|
+
"on-primary-container": colors.emerald[950],
|
|
23171
|
+
"inverse-primary": colors.emerald[400],
|
|
23172
|
+
// Secondary — spicy orange-red
|
|
23173
|
+
secondary: colors.orange[500],
|
|
23174
|
+
"on-secondary": "#FFFFFF",
|
|
23175
|
+
"secondary-container": colors.orange[100],
|
|
23176
|
+
"on-secondary-container": colors.orange[900],
|
|
23177
|
+
// Tertiary — earthy olive
|
|
23178
|
+
tertiary: colors.lime[600],
|
|
23179
|
+
"on-tertiary": "#FFFFFF",
|
|
23180
|
+
"tertiary-container": colors.lime[100],
|
|
23181
|
+
"on-tertiary-container": colors.lime[900],
|
|
23182
|
+
// Utility
|
|
23183
|
+
outline: colors.emerald[300],
|
|
23184
|
+
"outline-variant": colors.emerald[200],
|
|
23185
|
+
scrim: "rgba(26,58,42,0.4)",
|
|
23186
|
+
shadow: "rgba(26,58,42,0.10)",
|
|
23187
|
+
// Feedback
|
|
23188
|
+
error: colors.error[600],
|
|
23189
|
+
"on-error": "#FFFFFF",
|
|
23190
|
+
"error-container": colors.error[100],
|
|
23191
|
+
"on-error-container": colors.error[800],
|
|
23192
|
+
success: colors.success[600],
|
|
23193
|
+
"on-success": "#FFFFFF",
|
|
23194
|
+
"success-container": colors.success[100],
|
|
23195
|
+
"on-success-container": colors.success[800],
|
|
23196
|
+
warning: colors.warning[600],
|
|
23197
|
+
"on-warning": "#FFFFFF",
|
|
23198
|
+
"warning-container": colors.warning[100],
|
|
23199
|
+
"on-warning-container": colors.warning[800],
|
|
23200
|
+
info: colors.blue[600],
|
|
23201
|
+
"on-info": "#FFFFFF",
|
|
23202
|
+
"info-container": colors.blue[100],
|
|
23203
|
+
"on-info-container": colors.blue[800],
|
|
23204
|
+
// States
|
|
23205
|
+
"surface-tint": colors.emerald[700],
|
|
23206
|
+
"state-hover": "rgba(26,58,42,0.06)",
|
|
23207
|
+
"state-focus": "rgba(26,58,42,0.10)",
|
|
23208
|
+
"state-pressed": "rgba(26,58,42,0.10)",
|
|
23209
|
+
"state-dragged": "rgba(26,58,42,0.14)",
|
|
23210
|
+
"state-disabled": "rgba(26,58,42,0.38)",
|
|
23211
|
+
// Categorical
|
|
23212
|
+
"graphic-1": colors.emerald[700],
|
|
23213
|
+
"graphic-2": colors.orange[500],
|
|
23214
|
+
"graphic-3": colors.lime[600],
|
|
23215
|
+
"graphic-4": colors.success[600],
|
|
23216
|
+
"graphic-5": colors.warning[500],
|
|
23217
|
+
"graphic-6": colors.error[600],
|
|
23218
|
+
"graphic-7": colors.blue[600],
|
|
23219
|
+
"graphic-8": colors.green[600],
|
|
23220
|
+
"graphic-9": colors.orange[600],
|
|
23221
|
+
"graphic-10": colors.teal[600],
|
|
23222
|
+
"on-graphic": "#FFFFFF",
|
|
23223
|
+
"graphic-1-container": colors.emerald[50],
|
|
23224
|
+
"graphic-2-container": colors.orange[50],
|
|
23225
|
+
"graphic-3-container": colors.lime[50],
|
|
23226
|
+
"graphic-4-container": colors.success[50],
|
|
23227
|
+
"graphic-5-container": colors.warning[50],
|
|
23228
|
+
"graphic-6-container": colors.error[50],
|
|
23229
|
+
"graphic-7-container": colors.blue[50],
|
|
23230
|
+
"graphic-8-container": colors.green[50],
|
|
23231
|
+
"graphic-9-container": colors.orange[50],
|
|
23232
|
+
"graphic-10-container": colors.teal[50],
|
|
23233
|
+
"on-graphic-1-container": colors.emerald[800],
|
|
23234
|
+
"on-graphic-2-container": colors.orange[800],
|
|
23235
|
+
"on-graphic-3-container": colors.lime[800],
|
|
23236
|
+
"on-graphic-4-container": colors.success[800],
|
|
23237
|
+
"on-graphic-5-container": colors.warning[800],
|
|
23238
|
+
"on-graphic-6-container": colors.error[800],
|
|
23239
|
+
"on-graphic-7-container": colors.blue[800],
|
|
23240
|
+
"on-graphic-8-container": colors.green[800],
|
|
23241
|
+
"on-graphic-9-container": colors.orange[800],
|
|
23242
|
+
"on-graphic-10-container": colors.teal[800],
|
|
23243
|
+
// Status
|
|
23244
|
+
"status-positive": colors.success[600],
|
|
23245
|
+
"status-warning": colors.warning[600],
|
|
23246
|
+
"status-negative": colors.error[600],
|
|
23247
|
+
"status-neutral": colors.emerald[400],
|
|
23248
|
+
// Progress
|
|
23249
|
+
"progress-track": colors.emerald[200],
|
|
23250
|
+
"progress-indicator": colors.emerald[700],
|
|
23251
|
+
"progress-buffer": colors.emerald[400],
|
|
23252
|
+
// Scales
|
|
23253
|
+
"scale-low": colors.success[600],
|
|
23254
|
+
"scale-medium": colors.warning[600],
|
|
23255
|
+
"scale-high": colors.error[600],
|
|
23256
|
+
// Infrastructure
|
|
23257
|
+
"graphic-outline": colors.emerald[300],
|
|
23258
|
+
"graphic-divider": colors.emerald[200],
|
|
23259
|
+
"graphic-label": colors.emerald[700],
|
|
23260
|
+
"graphic-marker": colors.orange[500],
|
|
23261
|
+
// Overlays
|
|
23262
|
+
"graphic-hover": colors.emerald[50],
|
|
23263
|
+
"graphic-muted": colors.emerald[200],
|
|
23264
|
+
"annotation-line": colors.emerald[400]
|
|
23265
|
+
};
|
|
23266
|
+
var botanicaDarkTheme = {
|
|
23267
|
+
// Surfaces — dark forest
|
|
23268
|
+
surface: colors.emerald[975],
|
|
23269
|
+
"surface-dim": colors.emerald[975],
|
|
23270
|
+
"surface-bright": colors.emerald[900],
|
|
23271
|
+
"surface-container-lowest": colors.emerald[975],
|
|
23272
|
+
"surface-container-low": colors.emerald[950],
|
|
23273
|
+
"surface-container": colors.emerald[900],
|
|
23274
|
+
"surface-container-high": colors.green[900],
|
|
23275
|
+
"surface-container-highest": colors.green[800],
|
|
23276
|
+
// Content
|
|
23277
|
+
"on-surface": colors.emerald[50],
|
|
23278
|
+
"on-surface-variant": colors.emerald[300],
|
|
23279
|
+
"inverse-surface": colors.emerald[50],
|
|
23280
|
+
"inverse-on-surface": colors.emerald[950],
|
|
23281
|
+
// Primary
|
|
23282
|
+
primary: colors.emerald[300],
|
|
23283
|
+
"on-primary": colors.emerald[950],
|
|
23284
|
+
"primary-container": colors.emerald[900],
|
|
23285
|
+
"on-primary-container": colors.emerald[200],
|
|
23286
|
+
"inverse-primary": colors.emerald[700],
|
|
23287
|
+
// Secondary
|
|
23288
|
+
secondary: colors.orange[400],
|
|
23289
|
+
"on-secondary": colors.orange[950],
|
|
23290
|
+
"secondary-container": colors.orange[900],
|
|
23291
|
+
"on-secondary-container": colors.orange[100],
|
|
23292
|
+
// Tertiary
|
|
23293
|
+
tertiary: colors.lime[400],
|
|
23294
|
+
"on-tertiary": colors.lime[950],
|
|
23295
|
+
"tertiary-container": colors.lime[900],
|
|
23296
|
+
"on-tertiary-container": colors.lime[100],
|
|
23297
|
+
// Utility
|
|
23298
|
+
outline: colors.emerald[600],
|
|
23299
|
+
"outline-variant": colors.emerald[800],
|
|
23300
|
+
scrim: "rgba(255,255,255,0.1)",
|
|
23301
|
+
shadow: "rgba(0,0,0,0.3)",
|
|
23302
|
+
// Feedback
|
|
23303
|
+
error: colors.error[400],
|
|
23304
|
+
"on-error": colors.error[950],
|
|
23305
|
+
"error-container": colors.error[900],
|
|
23306
|
+
"on-error-container": colors.error[100],
|
|
23307
|
+
success: colors.success[400],
|
|
23308
|
+
"on-success": colors.success[950],
|
|
23309
|
+
"success-container": colors.success[900],
|
|
23310
|
+
"on-success-container": colors.success[100],
|
|
23311
|
+
warning: colors.warning[400],
|
|
23312
|
+
"on-warning": colors.warning[950],
|
|
23313
|
+
"warning-container": colors.warning[900],
|
|
23314
|
+
"on-warning-container": colors.warning[100],
|
|
23315
|
+
info: colors.blue[400],
|
|
23316
|
+
"on-info": colors.blue[950],
|
|
23317
|
+
"info-container": colors.blue[900],
|
|
23318
|
+
"on-info-container": colors.blue[100],
|
|
23319
|
+
// States
|
|
23320
|
+
"surface-tint": colors.emerald[300],
|
|
23321
|
+
"state-hover": "rgba(110,231,183,0.08)",
|
|
23322
|
+
"state-focus": "rgba(110,231,183,0.12)",
|
|
23323
|
+
"state-pressed": "rgba(110,231,183,0.12)",
|
|
23324
|
+
"state-dragged": "rgba(110,231,183,0.16)",
|
|
23325
|
+
"state-disabled": "rgba(236,253,245,0.38)",
|
|
23326
|
+
// Categorical
|
|
23327
|
+
"graphic-1": colors.emerald[300],
|
|
23328
|
+
"graphic-2": colors.orange[400],
|
|
23329
|
+
"graphic-3": colors.lime[400],
|
|
23330
|
+
"graphic-4": colors.success[400],
|
|
23331
|
+
"graphic-5": colors.warning[400],
|
|
23332
|
+
"graphic-6": colors.error[400],
|
|
23333
|
+
"graphic-7": colors.blue[400],
|
|
23334
|
+
"graphic-8": colors.green[400],
|
|
23335
|
+
"graphic-9": colors.orange[400],
|
|
23336
|
+
"graphic-10": colors.teal[400],
|
|
23337
|
+
"on-graphic": "#FFFFFF",
|
|
23338
|
+
"graphic-1-container": colors.emerald[950],
|
|
23339
|
+
"graphic-2-container": colors.orange[950],
|
|
23340
|
+
"graphic-3-container": colors.lime[950],
|
|
23341
|
+
"graphic-4-container": colors.success[950],
|
|
23342
|
+
"graphic-5-container": colors.warning[950],
|
|
23343
|
+
"graphic-6-container": colors.error[950],
|
|
23344
|
+
"graphic-7-container": colors.blue[950],
|
|
23345
|
+
"graphic-8-container": colors.green[950],
|
|
23346
|
+
"graphic-9-container": colors.orange[950],
|
|
23347
|
+
"graphic-10-container": colors.teal[950],
|
|
23348
|
+
"on-graphic-1-container": colors.emerald[100],
|
|
23349
|
+
"on-graphic-2-container": colors.orange[100],
|
|
23350
|
+
"on-graphic-3-container": colors.lime[100],
|
|
23351
|
+
"on-graphic-4-container": colors.success[100],
|
|
23352
|
+
"on-graphic-5-container": colors.warning[100],
|
|
23353
|
+
"on-graphic-6-container": colors.error[100],
|
|
23354
|
+
"on-graphic-7-container": colors.blue[100],
|
|
23355
|
+
"on-graphic-8-container": colors.green[100],
|
|
23356
|
+
"on-graphic-9-container": colors.orange[100],
|
|
23357
|
+
"on-graphic-10-container": colors.teal[100],
|
|
23358
|
+
// Status
|
|
23359
|
+
"status-positive": colors.success[400],
|
|
23360
|
+
"status-warning": colors.warning[400],
|
|
23361
|
+
"status-negative": colors.error[400],
|
|
23362
|
+
"status-neutral": colors.emerald[500],
|
|
23363
|
+
// Progress
|
|
23364
|
+
"progress-track": colors.emerald[800],
|
|
23365
|
+
"progress-indicator": colors.emerald[300],
|
|
23366
|
+
"progress-buffer": colors.emerald[600],
|
|
23367
|
+
// Scales
|
|
23368
|
+
"scale-low": colors.success[400],
|
|
23369
|
+
"scale-medium": colors.warning[400],
|
|
23370
|
+
"scale-high": colors.error[400],
|
|
23371
|
+
// Infrastructure
|
|
23372
|
+
"graphic-outline": colors.emerald[600],
|
|
23373
|
+
"graphic-divider": colors.emerald[800],
|
|
23374
|
+
"graphic-label": colors.emerald[300],
|
|
23375
|
+
"graphic-marker": colors.orange[400],
|
|
23376
|
+
// Overlays
|
|
23377
|
+
"graphic-hover": colors.emerald[900],
|
|
23378
|
+
"graphic-muted": colors.emerald[800],
|
|
23379
|
+
"annotation-line": colors.emerald[500]
|
|
23380
|
+
};
|
|
23381
|
+
var botanicaTheme = {
|
|
23382
|
+
label: "Botanica",
|
|
23383
|
+
description: "Nature-inspired cooking & lifestyle",
|
|
23384
|
+
swatch: colors.emerald[700],
|
|
23385
|
+
light: botanicaLightTheme,
|
|
23386
|
+
dark: botanicaDarkTheme,
|
|
23387
|
+
globals: {
|
|
23388
|
+
"--radius-xs": "0.25rem",
|
|
23389
|
+
"--radius-sm": "0.375rem",
|
|
23390
|
+
"--radius-md": "0.5rem",
|
|
23391
|
+
"--radius-lg": "0.75rem",
|
|
23392
|
+
"--radius-xl": "1rem",
|
|
23393
|
+
"--radius-2xl": "1.25rem",
|
|
23394
|
+
"--radius-3xl": "1.5rem",
|
|
23395
|
+
"--radius-4xl": "2rem",
|
|
23396
|
+
"--font-sans": "'Inter', 'Helvetica Neue', Arial, sans-serif",
|
|
23397
|
+
"--font-heading": "'Inter', 'Helvetica Neue', Arial, sans-serif",
|
|
23398
|
+
"--font-body": "'Inter', 'Helvetica Neue', Arial, sans-serif",
|
|
23399
|
+
"--font-weight-normal": "400",
|
|
23400
|
+
"--font-weight-medium": "500",
|
|
23401
|
+
"--font-weight-semibold": "600",
|
|
23402
|
+
"--font-weight-bold": "700",
|
|
23403
|
+
// ── Typography scale (geometric sans — standard sizes, moderate leading) ──
|
|
23404
|
+
"--text-xs": "0.75rem",
|
|
23405
|
+
"--text-xs--line-height": "1.125rem",
|
|
23406
|
+
"--text-sm": "0.875rem",
|
|
23407
|
+
"--text-sm--line-height": "1.25rem",
|
|
23408
|
+
"--text-base": "1rem",
|
|
23409
|
+
"--text-base--line-height": "1.5rem",
|
|
23410
|
+
"--text-lg": "1.125rem",
|
|
23411
|
+
"--text-lg--line-height": "1.75rem",
|
|
23412
|
+
"--text-xl": "1.25rem",
|
|
23413
|
+
"--text-xl--line-height": "1.875rem",
|
|
23414
|
+
"--text-2xl": "1.5rem",
|
|
23415
|
+
"--text-2xl--line-height": "2rem",
|
|
23416
|
+
"--text-3xl": "1.875rem",
|
|
23417
|
+
"--text-3xl--line-height": "2.375rem",
|
|
23418
|
+
"--text-4xl": "2.25rem",
|
|
23419
|
+
"--text-4xl--line-height": "2.75rem",
|
|
23420
|
+
"--letter-spacing-normal": "0.005em",
|
|
23421
|
+
"--letter-spacing-tight": "-0.02em",
|
|
23422
|
+
"--shadow-xs": "0 1px 2px 0 rgba(26,58,42,0.08)",
|
|
23423
|
+
"--shadow-sm": "0 2px 4px -1px rgba(26,58,42,0.10)",
|
|
23424
|
+
"--shadow-md": "0 3px 10px -2px rgba(26,58,42,0.10)",
|
|
23425
|
+
"--shadow-lg": "0 6px 20px -4px rgba(26,58,42,0.12)",
|
|
23426
|
+
"--shadow-xl": "0 12px 32px -6px rgba(26,58,42,0.12)",
|
|
23427
|
+
"--shadow-2xl": "0 20px 48px -8px rgba(26,58,42,0.14)"
|
|
23428
|
+
}
|
|
23429
|
+
};
|
|
23430
|
+
|
|
23431
|
+
// ../../app/ui-kit/pixelplay-ui/shared/config/themes/inkwell.ts
|
|
23432
|
+
var inkwellLightTheme = {
|
|
23433
|
+
// Surfaces — pure white / cool gray
|
|
23434
|
+
surface: "#FFFFFF",
|
|
23435
|
+
"surface-dim": colors.gray[100],
|
|
23436
|
+
"surface-bright": "#FFFFFF",
|
|
23437
|
+
"surface-container-lowest": "#FFFFFF",
|
|
23438
|
+
"surface-container-low": colors.gray[50],
|
|
23439
|
+
"surface-container": colors.gray[100],
|
|
23440
|
+
"surface-container-high": colors.gray[200],
|
|
23441
|
+
"surface-container-highest": colors.gray[300],
|
|
23442
|
+
// Content — near black
|
|
23443
|
+
"on-surface": colors.gray[950],
|
|
23444
|
+
"on-surface-variant": colors.gray[700],
|
|
23445
|
+
"inverse-surface": colors.gray[900],
|
|
23446
|
+
"inverse-on-surface": colors.gray[50],
|
|
23447
|
+
// Primary — deep purple (editorial ink)
|
|
23448
|
+
primary: colors.violet[600],
|
|
23449
|
+
"on-primary": "#FFFFFF",
|
|
23450
|
+
"primary-container": colors.violet[100],
|
|
23451
|
+
"on-primary-container": colors.violet[900],
|
|
23452
|
+
"inverse-primary": colors.violet[300],
|
|
23453
|
+
// Secondary — muted charcoal
|
|
23454
|
+
secondary: colors.gray[700],
|
|
23455
|
+
"on-secondary": "#FFFFFF",
|
|
23456
|
+
"secondary-container": colors.gray[200],
|
|
23457
|
+
"on-secondary-container": colors.gray[900],
|
|
23458
|
+
// Tertiary — editorial red accent
|
|
23459
|
+
tertiary: colors.red[600],
|
|
23460
|
+
"on-tertiary": "#FFFFFF",
|
|
23461
|
+
"tertiary-container": colors.red[100],
|
|
23462
|
+
"on-tertiary-container": colors.red[900],
|
|
23463
|
+
// Utility
|
|
23464
|
+
outline: colors.gray[300],
|
|
23465
|
+
"outline-variant": colors.gray[200],
|
|
23466
|
+
scrim: "rgba(0,0,0,0.5)",
|
|
23467
|
+
shadow: "rgba(0,0,0,0.15)",
|
|
23468
|
+
// Feedback
|
|
23469
|
+
error: colors.error[600],
|
|
23470
|
+
"on-error": "#FFFFFF",
|
|
23471
|
+
"error-container": colors.error[100],
|
|
23472
|
+
"on-error-container": colors.error[800],
|
|
23473
|
+
success: colors.success[600],
|
|
23474
|
+
"on-success": "#FFFFFF",
|
|
23475
|
+
"success-container": colors.success[100],
|
|
23476
|
+
"on-success-container": colors.success[800],
|
|
23477
|
+
warning: colors.warning[600],
|
|
23478
|
+
"on-warning": "#FFFFFF",
|
|
23479
|
+
"warning-container": colors.warning[100],
|
|
23480
|
+
"on-warning-container": colors.warning[800],
|
|
23481
|
+
info: colors.blue[600],
|
|
23482
|
+
"on-info": "#FFFFFF",
|
|
23483
|
+
"info-container": colors.blue[100],
|
|
23484
|
+
"on-info-container": colors.blue[800],
|
|
23485
|
+
// States
|
|
23486
|
+
"surface-tint": colors.violet[600],
|
|
23487
|
+
"state-hover": "rgba(0,0,0,0.06)",
|
|
23488
|
+
"state-focus": "rgba(0,0,0,0.10)",
|
|
23489
|
+
"state-pressed": "rgba(0,0,0,0.10)",
|
|
23490
|
+
"state-dragged": "rgba(0,0,0,0.14)",
|
|
23491
|
+
"state-disabled": "rgba(0,0,0,0.38)",
|
|
23492
|
+
// Categorical
|
|
23493
|
+
"graphic-1": colors.violet[600],
|
|
23494
|
+
"graphic-2": colors.red[600],
|
|
23495
|
+
"graphic-3": colors.gray[700],
|
|
23496
|
+
"graphic-4": colors.success[600],
|
|
23497
|
+
"graphic-5": colors.warning[600],
|
|
23498
|
+
"graphic-6": colors.blue[600],
|
|
23499
|
+
"graphic-7": colors.purple[600],
|
|
23500
|
+
"graphic-8": colors.teal[600],
|
|
23501
|
+
"graphic-9": colors.orange[600],
|
|
23502
|
+
"graphic-10": colors.blueGray[600],
|
|
23503
|
+
"on-graphic": "#FFFFFF",
|
|
23504
|
+
"graphic-1-container": colors.violet[50],
|
|
23505
|
+
"graphic-2-container": colors.red[50],
|
|
23506
|
+
"graphic-3-container": colors.gray[100],
|
|
23507
|
+
"graphic-4-container": colors.success[50],
|
|
23508
|
+
"graphic-5-container": colors.warning[50],
|
|
23509
|
+
"graphic-6-container": colors.blue[50],
|
|
23510
|
+
"graphic-7-container": colors.purple[50],
|
|
23511
|
+
"graphic-8-container": colors.teal[50],
|
|
23512
|
+
"graphic-9-container": colors.orange[50],
|
|
23513
|
+
"graphic-10-container": colors.blueGray[50],
|
|
23514
|
+
"on-graphic-1-container": colors.violet[800],
|
|
23515
|
+
"on-graphic-2-container": colors.red[800],
|
|
23516
|
+
"on-graphic-3-container": colors.gray[800],
|
|
23517
|
+
"on-graphic-4-container": colors.success[800],
|
|
23518
|
+
"on-graphic-5-container": colors.warning[800],
|
|
23519
|
+
"on-graphic-6-container": colors.blue[800],
|
|
23520
|
+
"on-graphic-7-container": colors.purple[800],
|
|
23521
|
+
"on-graphic-8-container": colors.teal[800],
|
|
23522
|
+
"on-graphic-9-container": colors.orange[800],
|
|
23523
|
+
"on-graphic-10-container": colors.blueGray[800],
|
|
23524
|
+
// Status
|
|
23525
|
+
"status-positive": colors.success[600],
|
|
23526
|
+
"status-warning": colors.warning[600],
|
|
23527
|
+
"status-negative": colors.red[600],
|
|
23528
|
+
"status-neutral": colors.gray[400],
|
|
23529
|
+
// Progress
|
|
23530
|
+
"progress-track": colors.gray[200],
|
|
23531
|
+
"progress-indicator": colors.violet[600],
|
|
23532
|
+
"progress-buffer": colors.violet[300],
|
|
23533
|
+
// Scales
|
|
23534
|
+
"scale-low": colors.success[600],
|
|
23535
|
+
"scale-medium": colors.warning[600],
|
|
23536
|
+
"scale-high": colors.red[600],
|
|
23537
|
+
// Infrastructure
|
|
23538
|
+
"graphic-outline": colors.gray[300],
|
|
23539
|
+
"graphic-divider": colors.gray[200],
|
|
23540
|
+
"graphic-label": colors.gray[700],
|
|
23541
|
+
"graphic-marker": colors.violet[600],
|
|
23542
|
+
// Overlays
|
|
23543
|
+
"graphic-hover": colors.violet[50],
|
|
23544
|
+
"graphic-muted": colors.gray[200],
|
|
23545
|
+
"annotation-line": colors.gray[400]
|
|
23546
|
+
};
|
|
23547
|
+
var inkwellDarkTheme = {
|
|
23548
|
+
// Surfaces — pure dark editorial
|
|
23549
|
+
surface: colors.gray[950],
|
|
23550
|
+
"surface-dim": colors.gray[975],
|
|
23551
|
+
"surface-bright": colors.gray[800],
|
|
23552
|
+
"surface-container-lowest": colors.gray[975],
|
|
23553
|
+
"surface-container-low": colors.gray[950],
|
|
23554
|
+
"surface-container": colors.gray[900],
|
|
23555
|
+
"surface-container-high": colors.gray[800],
|
|
23556
|
+
"surface-container-highest": colors.gray[700],
|
|
23557
|
+
// Content
|
|
23558
|
+
"on-surface": colors.gray[50],
|
|
23559
|
+
"on-surface-variant": colors.gray[400],
|
|
23560
|
+
"inverse-surface": colors.gray[50],
|
|
23561
|
+
"inverse-on-surface": colors.gray[950],
|
|
23562
|
+
// Primary
|
|
23563
|
+
primary: colors.violet[300],
|
|
23564
|
+
"on-primary": colors.violet[950],
|
|
23565
|
+
"primary-container": colors.violet[800],
|
|
23566
|
+
"on-primary-container": colors.violet[100],
|
|
23567
|
+
"inverse-primary": colors.violet[600],
|
|
23568
|
+
// Secondary
|
|
23569
|
+
secondary: colors.gray[400],
|
|
23570
|
+
"on-secondary": colors.gray[900],
|
|
23571
|
+
"secondary-container": colors.gray[700],
|
|
23572
|
+
"on-secondary-container": colors.gray[100],
|
|
23573
|
+
// Tertiary
|
|
23574
|
+
tertiary: colors.red[400],
|
|
23575
|
+
"on-tertiary": colors.red[950],
|
|
23576
|
+
"tertiary-container": colors.red[900],
|
|
23577
|
+
"on-tertiary-container": colors.red[100],
|
|
23578
|
+
// Utility
|
|
23579
|
+
outline: colors.gray[600],
|
|
23580
|
+
"outline-variant": colors.gray[700],
|
|
23581
|
+
scrim: "rgba(255,255,255,0.1)",
|
|
23582
|
+
shadow: "rgba(0,0,0,0.4)",
|
|
23583
|
+
// Feedback
|
|
23584
|
+
error: colors.error[400],
|
|
23585
|
+
"on-error": colors.error[950],
|
|
23586
|
+
"error-container": colors.error[900],
|
|
23587
|
+
"on-error-container": colors.error[100],
|
|
23588
|
+
success: colors.success[400],
|
|
23589
|
+
"on-success": colors.success[950],
|
|
23590
|
+
"success-container": colors.success[900],
|
|
23591
|
+
"on-success-container": colors.success[100],
|
|
23592
|
+
warning: colors.warning[400],
|
|
23593
|
+
"on-warning": colors.warning[950],
|
|
23594
|
+
"warning-container": colors.warning[900],
|
|
23595
|
+
"on-warning-container": colors.warning[100],
|
|
23596
|
+
info: colors.blue[400],
|
|
23597
|
+
"on-info": colors.blue[950],
|
|
23598
|
+
"info-container": colors.blue[900],
|
|
23599
|
+
"on-info-container": colors.blue[100],
|
|
23600
|
+
// States
|
|
23601
|
+
"surface-tint": colors.violet[300],
|
|
23602
|
+
"state-hover": "rgba(196,181,253,0.08)",
|
|
23603
|
+
"state-focus": "rgba(196,181,253,0.12)",
|
|
23604
|
+
"state-pressed": "rgba(196,181,253,0.12)",
|
|
23605
|
+
"state-dragged": "rgba(196,181,253,0.16)",
|
|
23606
|
+
"state-disabled": "rgba(250,250,250,0.38)",
|
|
23607
|
+
// Categorical
|
|
23608
|
+
"graphic-1": colors.violet[300],
|
|
23609
|
+
"graphic-2": colors.red[400],
|
|
23610
|
+
"graphic-3": colors.gray[400],
|
|
23611
|
+
"graphic-4": colors.success[400],
|
|
23612
|
+
"graphic-5": colors.warning[400],
|
|
23613
|
+
"graphic-6": colors.blue[400],
|
|
23614
|
+
"graphic-7": colors.purple[400],
|
|
23615
|
+
"graphic-8": colors.teal[400],
|
|
23616
|
+
"graphic-9": colors.orange[400],
|
|
23617
|
+
"graphic-10": colors.blueGray[400],
|
|
23618
|
+
"on-graphic": "#FFFFFF",
|
|
23619
|
+
"graphic-1-container": colors.violet[950],
|
|
23620
|
+
"graphic-2-container": colors.red[950],
|
|
23621
|
+
"graphic-3-container": colors.gray[900],
|
|
23622
|
+
"graphic-4-container": colors.success[950],
|
|
23623
|
+
"graphic-5-container": colors.warning[950],
|
|
23624
|
+
"graphic-6-container": colors.blue[950],
|
|
23625
|
+
"graphic-7-container": colors.purple[950],
|
|
23626
|
+
"graphic-8-container": colors.teal[950],
|
|
23627
|
+
"graphic-9-container": colors.orange[950],
|
|
23628
|
+
"graphic-10-container": colors.blueGray[950],
|
|
23629
|
+
"on-graphic-1-container": colors.violet[100],
|
|
23630
|
+
"on-graphic-2-container": colors.red[100],
|
|
23631
|
+
"on-graphic-3-container": colors.gray[100],
|
|
23632
|
+
"on-graphic-4-container": colors.success[100],
|
|
23633
|
+
"on-graphic-5-container": colors.warning[100],
|
|
23634
|
+
"on-graphic-6-container": colors.blue[100],
|
|
23635
|
+
"on-graphic-7-container": colors.purple[100],
|
|
23636
|
+
"on-graphic-8-container": colors.teal[100],
|
|
23637
|
+
"on-graphic-9-container": colors.orange[100],
|
|
23638
|
+
"on-graphic-10-container": colors.blueGray[100],
|
|
23639
|
+
// Status
|
|
23640
|
+
"status-positive": colors.success[400],
|
|
23641
|
+
"status-warning": colors.warning[400],
|
|
23642
|
+
"status-negative": colors.red[400],
|
|
23643
|
+
"status-neutral": colors.gray[500],
|
|
23644
|
+
// Progress
|
|
23645
|
+
"progress-track": colors.gray[700],
|
|
23646
|
+
"progress-indicator": colors.violet[300],
|
|
23647
|
+
"progress-buffer": colors.violet[700],
|
|
23648
|
+
// Scales
|
|
23649
|
+
"scale-low": colors.success[400],
|
|
23650
|
+
"scale-medium": colors.warning[400],
|
|
23651
|
+
"scale-high": colors.red[400],
|
|
23652
|
+
// Infrastructure
|
|
23653
|
+
"graphic-outline": colors.gray[600],
|
|
23654
|
+
"graphic-divider": colors.gray[700],
|
|
23655
|
+
"graphic-label": colors.gray[400],
|
|
23656
|
+
"graphic-marker": colors.violet[300],
|
|
23657
|
+
// Overlays
|
|
23658
|
+
"graphic-hover": colors.violet[800],
|
|
23659
|
+
"graphic-muted": colors.gray[700],
|
|
23660
|
+
"annotation-line": colors.gray[500]
|
|
23661
|
+
};
|
|
23662
|
+
var inkwellTheme = {
|
|
23663
|
+
label: "Inkwell",
|
|
23664
|
+
description: "Bold editorial & news",
|
|
23665
|
+
swatch: colors.violet[600],
|
|
23666
|
+
light: inkwellLightTheme,
|
|
23667
|
+
dark: inkwellDarkTheme,
|
|
23668
|
+
globals: {
|
|
23669
|
+
"--radius-xs": "0px",
|
|
23670
|
+
"--radius-sm": "0px",
|
|
23671
|
+
"--radius-md": "2px",
|
|
23672
|
+
"--radius-lg": "2px",
|
|
23673
|
+
"--radius-xl": "4px",
|
|
23674
|
+
"--radius-2xl": "4px",
|
|
23675
|
+
"--radius-3xl": "4px",
|
|
23676
|
+
"--radius-4xl": "4px",
|
|
23677
|
+
"--font-sans": "'Space Grotesk', 'Helvetica Neue', Arial, sans-serif",
|
|
23678
|
+
"--font-heading": "'Space Grotesk', 'Helvetica Neue', Arial, sans-serif",
|
|
23679
|
+
"--font-body": "'Space Grotesk', 'Helvetica Neue', Arial, sans-serif",
|
|
23680
|
+
"--font-weight-normal": "400",
|
|
23681
|
+
"--font-weight-medium": "500",
|
|
23682
|
+
"--font-weight-semibold": "600",
|
|
23683
|
+
"--font-weight-bold": "700",
|
|
23684
|
+
// ── Typography scale (editorial — tighter body, punchy display headings) ──
|
|
23685
|
+
"--text-xs": "0.6875rem",
|
|
23686
|
+
"--text-xs--line-height": "1rem",
|
|
23687
|
+
"--text-sm": "0.8125rem",
|
|
23688
|
+
"--text-sm--line-height": "1.25rem",
|
|
23689
|
+
"--text-base": "0.9375rem",
|
|
23690
|
+
"--text-base--line-height": "1.375rem",
|
|
23691
|
+
"--text-lg": "1.0625rem",
|
|
23692
|
+
"--text-lg--line-height": "1.5rem",
|
|
23693
|
+
"--text-xl": "1.25rem",
|
|
23694
|
+
"--text-xl--line-height": "1.75rem",
|
|
23695
|
+
"--text-2xl": "1.625rem",
|
|
23696
|
+
"--text-2xl--line-height": "2rem",
|
|
23697
|
+
"--text-3xl": "2.125rem",
|
|
23698
|
+
"--text-3xl--line-height": "2.5rem",
|
|
23699
|
+
"--text-4xl": "2.75rem",
|
|
23700
|
+
"--text-4xl--line-height": "3.25rem",
|
|
23701
|
+
"--letter-spacing-normal": "0em",
|
|
23702
|
+
"--letter-spacing-tight": "-0.025em",
|
|
23703
|
+
"--shadow-xs": "0 1px 2px 0 rgba(0,0,0,0.14)",
|
|
23704
|
+
"--shadow-sm": "0 1px 3px 0 rgba(0,0,0,0.18)",
|
|
23705
|
+
"--shadow-md": "0 2px 6px -1px rgba(0,0,0,0.20)",
|
|
23706
|
+
"--shadow-lg": "0 4px 12px -2px rgba(0,0,0,0.22)",
|
|
23707
|
+
"--shadow-xl": "0 8px 24px -4px rgba(0,0,0,0.22)",
|
|
23708
|
+
"--shadow-2xl": "0 12px 36px -6px rgba(0,0,0,0.24)"
|
|
23709
|
+
}
|
|
23710
|
+
};
|
|
23711
|
+
|
|
23712
|
+
// ../../app/ui-kit/pixelplay-ui/shared/config/theme-tokens.ts
|
|
23713
|
+
var lightTheme = {
|
|
23714
|
+
// Surfaces
|
|
23715
|
+
surface: colors.gray[25],
|
|
23716
|
+
"surface-dim": colors.gray[100],
|
|
23717
|
+
"surface-bright": "#FFFFFF",
|
|
23718
|
+
"surface-container-lowest": "#FFFFFF",
|
|
23719
|
+
"surface-container-low": colors.gray[50],
|
|
23720
|
+
"surface-container": colors.gray[100],
|
|
23721
|
+
"surface-container-high": colors.gray[200],
|
|
23722
|
+
"surface-container-highest": colors.gray[300],
|
|
23723
|
+
// Content
|
|
23724
|
+
"on-surface": colors.gray[900],
|
|
23725
|
+
"on-surface-variant": colors.gray[600],
|
|
23726
|
+
"inverse-surface": colors.gray[800],
|
|
23727
|
+
"inverse-on-surface": colors.gray[50],
|
|
23728
|
+
// Primary (brand = purple family)
|
|
23729
|
+
primary: colors.brand[600],
|
|
23730
|
+
"on-primary": "#FFFFFF",
|
|
23731
|
+
"primary-container": colors.brand[200],
|
|
23732
|
+
"on-primary-container": colors.brand[800],
|
|
23733
|
+
"inverse-primary": colors.brand[300],
|
|
23734
|
+
// Secondary (violet)
|
|
23735
|
+
secondary: colors.violet[500],
|
|
23736
|
+
"on-secondary": "#FFFFFF",
|
|
23737
|
+
"secondary-container": colors.violet[100],
|
|
23738
|
+
"on-secondary-container": colors.violet[800],
|
|
23739
|
+
// Tertiary (teal accent)
|
|
23740
|
+
tertiary: colors.teal[500],
|
|
23741
|
+
"on-tertiary": "#FFFFFF",
|
|
23742
|
+
"tertiary-container": colors.teal[100],
|
|
23743
|
+
"on-tertiary-container": colors.teal[800],
|
|
23744
|
+
// Utility
|
|
23745
|
+
outline: colors.gray[300],
|
|
23746
|
+
"outline-variant": colors.gray[200],
|
|
23747
|
+
scrim: "rgba(0,0,0,0.4)",
|
|
23748
|
+
shadow: "rgba(0,0,0,0.08)",
|
|
23749
|
+
// Feedback
|
|
23750
|
+
error: colors.error[500],
|
|
23751
|
+
"on-error": "#FFFFFF",
|
|
23752
|
+
"error-container": colors.error[100],
|
|
23753
|
+
"on-error-container": colors.error[800],
|
|
23754
|
+
success: colors.success[500],
|
|
23755
|
+
"on-success": "#FFFFFF",
|
|
23756
|
+
"success-container": colors.success[100],
|
|
23757
|
+
"on-success-container": colors.success[800],
|
|
23758
|
+
warning: colors.warning[500],
|
|
23759
|
+
"on-warning": "#FFFFFF",
|
|
23760
|
+
"warning-container": colors.warning[100],
|
|
23761
|
+
"on-warning-container": colors.warning[800],
|
|
23762
|
+
info: colors.blue[500],
|
|
23763
|
+
"on-info": "#FFFFFF",
|
|
23764
|
+
"info-container": colors.blue[100],
|
|
23765
|
+
"on-info-container": colors.blue[800],
|
|
23766
|
+
// States
|
|
23767
|
+
"surface-tint": colors.brand[500],
|
|
23768
|
+
"state-hover": "rgba(0,0,0,0.08)",
|
|
23769
|
+
"state-focus": "rgba(0,0,0,0.12)",
|
|
23770
|
+
"state-pressed": "rgba(0,0,0,0.12)",
|
|
23771
|
+
"state-dragged": "rgba(0,0,0,0.16)",
|
|
23772
|
+
"state-disabled": "rgba(0,0,0,0.38)",
|
|
23773
|
+
// Categorical — 10 perceptually distinct hues
|
|
23774
|
+
"graphic-1": colors.brand[500],
|
|
23775
|
+
// purple
|
|
23776
|
+
"graphic-2": colors.blue[500],
|
|
23777
|
+
// blue
|
|
23778
|
+
"graphic-3": colors.teal[500],
|
|
23779
|
+
// teal
|
|
23780
|
+
"graphic-4": colors.success[500],
|
|
23781
|
+
// green
|
|
23782
|
+
"graphic-5": colors.warning[500],
|
|
23783
|
+
// amber
|
|
23784
|
+
"graphic-6": colors.error[500],
|
|
23785
|
+
// red
|
|
23786
|
+
"graphic-7": colors.indigo[500],
|
|
23787
|
+
// indigo
|
|
23788
|
+
"graphic-8": colors.pink[500],
|
|
23789
|
+
// pink
|
|
23790
|
+
"graphic-9": colors.amber[500],
|
|
23791
|
+
// yellow-amber
|
|
23792
|
+
"graphic-10": colors.cyan[500],
|
|
23793
|
+
// cyan
|
|
23794
|
+
"on-graphic": "#FFFFFF",
|
|
23795
|
+
// Categorical containers — very light bg ([50]) + mid-tone icon/text ([600])
|
|
23796
|
+
"graphic-1-container": colors.brand[50],
|
|
23797
|
+
"graphic-2-container": colors.blue[50],
|
|
23798
|
+
"graphic-3-container": colors.teal[50],
|
|
23799
|
+
"graphic-4-container": colors.success[50],
|
|
23800
|
+
"graphic-5-container": colors.warning[50],
|
|
23801
|
+
"graphic-6-container": colors.error[50],
|
|
23802
|
+
"graphic-7-container": colors.indigo[50],
|
|
23803
|
+
"graphic-8-container": colors.pink[50],
|
|
23804
|
+
"graphic-9-container": colors.amber[50],
|
|
23805
|
+
"graphic-10-container": colors.cyan[50],
|
|
23806
|
+
"on-graphic-1-container": colors.brand[600],
|
|
23807
|
+
"on-graphic-2-container": colors.blue[600],
|
|
23808
|
+
"on-graphic-3-container": colors.teal[600],
|
|
23809
|
+
"on-graphic-4-container": colors.success[600],
|
|
23810
|
+
"on-graphic-5-container": colors.warning[600],
|
|
23811
|
+
"on-graphic-6-container": colors.error[600],
|
|
23812
|
+
"on-graphic-7-container": colors.indigo[600],
|
|
23813
|
+
"on-graphic-8-container": colors.pink[600],
|
|
23814
|
+
"on-graphic-9-container": colors.amber[600],
|
|
23815
|
+
"on-graphic-10-container": colors.cyan[600],
|
|
23816
|
+
// Status
|
|
23817
|
+
"status-positive": colors.success[600],
|
|
23818
|
+
"status-warning": colors.warning[500],
|
|
23819
|
+
"status-negative": colors.error[600],
|
|
23820
|
+
"status-neutral": colors.gray[400],
|
|
23821
|
+
// Progress
|
|
23822
|
+
"progress-track": colors.gray[200],
|
|
23823
|
+
"progress-indicator": colors.brand[500],
|
|
23824
|
+
"progress-buffer": colors.brand[300],
|
|
23825
|
+
// Scales
|
|
23826
|
+
"scale-low": colors.success[300],
|
|
23827
|
+
"scale-medium": colors.warning[400],
|
|
23828
|
+
"scale-high": colors.error[500],
|
|
23829
|
+
// Infrastructure
|
|
23830
|
+
"graphic-outline": colors.gray[300],
|
|
23831
|
+
"graphic-divider": colors.gray[200],
|
|
23832
|
+
"graphic-label": colors.gray[600],
|
|
23833
|
+
"graphic-marker": colors.brand[600],
|
|
23834
|
+
// Overlays
|
|
23835
|
+
"graphic-hover": colors.brand[100],
|
|
23836
|
+
"graphic-muted": colors.gray[200],
|
|
23837
|
+
"annotation-line": colors.gray[400]
|
|
23838
|
+
};
|
|
23839
|
+
var darkTheme = {
|
|
23840
|
+
// Surfaces
|
|
23841
|
+
surface: colors.gray[900],
|
|
23842
|
+
"surface-dim": "#080D14",
|
|
23843
|
+
"surface-bright": colors.gray[800],
|
|
23844
|
+
"surface-container-lowest": "#080D14",
|
|
23845
|
+
"surface-container-low": colors.gray[900],
|
|
23846
|
+
"surface-container": colors.gray[800],
|
|
23847
|
+
"surface-container-high": colors.gray[700],
|
|
23848
|
+
"surface-container-highest": colors.gray[600],
|
|
23849
|
+
// Content
|
|
23850
|
+
"on-surface": colors.gray[50],
|
|
23851
|
+
"on-surface-variant": colors.gray[400],
|
|
23852
|
+
"inverse-surface": colors.gray[100],
|
|
23853
|
+
"inverse-on-surface": colors.gray[900],
|
|
23854
|
+
// Primary
|
|
23855
|
+
primary: colors.brand[400],
|
|
23856
|
+
"on-primary": "#000000",
|
|
23857
|
+
"primary-container": colors.brand[900],
|
|
23858
|
+
"on-primary-container": colors.brand[100],
|
|
23859
|
+
"inverse-primary": colors.brand[600],
|
|
23860
|
+
// Secondary
|
|
23861
|
+
secondary: colors.violet[400],
|
|
23862
|
+
"on-secondary": colors.violet[900],
|
|
23863
|
+
"secondary-container": colors.violet[800],
|
|
23864
|
+
"on-secondary-container": colors.violet[100],
|
|
23865
|
+
// Tertiary
|
|
23866
|
+
tertiary: colors.teal[400],
|
|
23867
|
+
"on-tertiary": "#000000",
|
|
23868
|
+
"tertiary-container": colors.teal[900],
|
|
23869
|
+
"on-tertiary-container": colors.teal[100],
|
|
23870
|
+
// Utility
|
|
23871
|
+
outline: colors.gray[600],
|
|
23872
|
+
"outline-variant": colors.gray[700],
|
|
23873
|
+
scrim: "rgba(255,255,255,0.1)",
|
|
23874
|
+
shadow: "rgba(0,0,0,0.3)",
|
|
23875
|
+
// Feedback
|
|
23876
|
+
error: colors.error[400],
|
|
23877
|
+
"on-error": colors.error[900],
|
|
23878
|
+
"error-container": colors.error[800],
|
|
23879
|
+
"on-error-container": colors.error[100],
|
|
23880
|
+
success: colors.success[400],
|
|
23881
|
+
"on-success": colors.success[900],
|
|
23882
|
+
"success-container": colors.success[800],
|
|
23883
|
+
"on-success-container": colors.success[100],
|
|
23884
|
+
warning: colors.warning[400],
|
|
23885
|
+
"on-warning": colors.warning[900],
|
|
23886
|
+
"warning-container": colors.warning[800],
|
|
23887
|
+
"on-warning-container": colors.warning[100],
|
|
23888
|
+
info: colors.blue[400],
|
|
23889
|
+
"on-info": colors.blue[900],
|
|
23890
|
+
"info-container": colors.blue[800],
|
|
23891
|
+
"on-info-container": colors.blue[100],
|
|
23892
|
+
// States
|
|
23893
|
+
"surface-tint": colors.brand[400],
|
|
23894
|
+
"state-hover": "rgba(255,255,255,0.08)",
|
|
23895
|
+
"state-focus": "rgba(255,255,255,0.12)",
|
|
23896
|
+
"state-pressed": "rgba(255,255,255,0.12)",
|
|
23897
|
+
"state-dragged": "rgba(255,255,255,0.16)",
|
|
23898
|
+
"state-disabled": "rgba(255,255,255,0.38)",
|
|
23899
|
+
// Categorical
|
|
23900
|
+
"graphic-1": colors.brand[400],
|
|
23901
|
+
"graphic-2": colors.blue[400],
|
|
23902
|
+
"graphic-3": colors.teal[400],
|
|
23903
|
+
"graphic-4": colors.success[400],
|
|
23904
|
+
"graphic-5": colors.warning[400],
|
|
23905
|
+
"graphic-6": colors.error[400],
|
|
23906
|
+
"graphic-7": colors.indigo[400],
|
|
23907
|
+
"graphic-8": colors.pink[400],
|
|
23908
|
+
"graphic-9": colors.amber[400],
|
|
23909
|
+
"graphic-10": colors.cyan[400],
|
|
23910
|
+
"on-graphic": "#FFFFFF",
|
|
23911
|
+
// Categorical containers — very dark bg + light text
|
|
23912
|
+
"graphic-1-container": colors.brand[950],
|
|
23913
|
+
"graphic-2-container": colors.blue[950],
|
|
23914
|
+
"graphic-3-container": colors.teal[950],
|
|
23915
|
+
"graphic-4-container": colors.success[950],
|
|
23916
|
+
"graphic-5-container": colors.warning[950],
|
|
23917
|
+
"graphic-6-container": colors.error[950],
|
|
23918
|
+
"graphic-7-container": colors.indigo[950],
|
|
23919
|
+
"graphic-8-container": colors.pink[950],
|
|
23920
|
+
"graphic-9-container": colors.amber[950],
|
|
23921
|
+
"graphic-10-container": colors.cyan[950],
|
|
23922
|
+
"on-graphic-1-container": colors.brand[100],
|
|
23923
|
+
"on-graphic-2-container": colors.blue[100],
|
|
23924
|
+
"on-graphic-3-container": colors.teal[100],
|
|
23925
|
+
"on-graphic-4-container": colors.success[100],
|
|
23926
|
+
"on-graphic-5-container": colors.warning[100],
|
|
23927
|
+
"on-graphic-6-container": colors.error[100],
|
|
23928
|
+
"on-graphic-7-container": colors.indigo[100],
|
|
23929
|
+
"on-graphic-8-container": colors.pink[100],
|
|
23930
|
+
"on-graphic-9-container": colors.amber[100],
|
|
23931
|
+
"on-graphic-10-container": colors.cyan[100],
|
|
23932
|
+
// Status
|
|
23933
|
+
"status-positive": colors.success[400],
|
|
23934
|
+
"status-warning": colors.warning[400],
|
|
23935
|
+
"status-negative": colors.error[400],
|
|
23936
|
+
"status-neutral": colors.gray[500],
|
|
23937
|
+
// Progress
|
|
23938
|
+
"progress-track": colors.gray[700],
|
|
23939
|
+
"progress-indicator": colors.brand[400],
|
|
23940
|
+
"progress-buffer": colors.brand[700],
|
|
23941
|
+
// Scales
|
|
23942
|
+
"scale-low": colors.success[400],
|
|
23943
|
+
"scale-medium": colors.warning[400],
|
|
23944
|
+
"scale-high": colors.error[400],
|
|
23945
|
+
// Infrastructure
|
|
23946
|
+
"graphic-outline": colors.gray[600],
|
|
23947
|
+
"graphic-divider": colors.gray[700],
|
|
23948
|
+
"graphic-label": colors.gray[400],
|
|
23949
|
+
"graphic-marker": colors.brand[400],
|
|
23950
|
+
// Overlays
|
|
23951
|
+
"graphic-hover": colors.brand[800],
|
|
23952
|
+
"graphic-muted": colors.gray[700],
|
|
23953
|
+
"annotation-line": colors.gray[500]
|
|
23954
|
+
};
|
|
23955
|
+
var designThemes = {
|
|
23956
|
+
rosewood: rosewoodTheme,
|
|
23957
|
+
botanica: botanicaTheme,
|
|
23958
|
+
inkwell: inkwellTheme
|
|
23959
|
+
};
|
|
23960
|
+
function tokensToVarBlock(tokens) {
|
|
23961
|
+
return Object.entries(tokens).map(([key, value]) => ` --${key}: ${value};`).join("\n");
|
|
23962
|
+
}
|
|
23963
|
+
function globalsToVarBlock(globals) {
|
|
23964
|
+
return Object.entries(globals).map(([key, value]) => ` ${key}: ${value};`).join("\n");
|
|
23965
|
+
}
|
|
23966
|
+
function generateThemeCSS() {
|
|
23967
|
+
const blocks = [];
|
|
23968
|
+
const entries = Object.entries(designThemes);
|
|
23969
|
+
const [, firstTheme] = entries[0];
|
|
23970
|
+
const firstLightVars = tokensToVarBlock(firstTheme.light);
|
|
23971
|
+
const firstGlobals = globalsToVarBlock(firstTheme.globals);
|
|
23972
|
+
const firstDarkVars = tokensToVarBlock(firstTheme.dark);
|
|
23973
|
+
const rootBlock = [firstLightVars, firstGlobals].filter(Boolean).join("\n");
|
|
23974
|
+
blocks.push(`:root {
|
|
23975
|
+
${rootBlock}
|
|
23976
|
+
}`);
|
|
23977
|
+
blocks.push(`.dark {
|
|
23978
|
+
${firstDarkVars}
|
|
23979
|
+
${firstGlobals}
|
|
23980
|
+
}`);
|
|
23981
|
+
for (const [name, theme] of entries) {
|
|
23982
|
+
const lightVars = tokensToVarBlock(theme.light);
|
|
23983
|
+
const globalsVars = globalsToVarBlock(theme.globals);
|
|
23984
|
+
const darkVars = tokensToVarBlock(theme.dark);
|
|
23985
|
+
const lightBlock = [lightVars, globalsVars].filter(Boolean).join("\n");
|
|
23986
|
+
blocks.push(`[data-design-theme="${name}"] {
|
|
23987
|
+
${lightBlock}
|
|
23988
|
+
}`);
|
|
23989
|
+
blocks.push(
|
|
23990
|
+
`[data-design-theme="${name}"].dark {
|
|
23991
|
+
${darkVars}
|
|
23992
|
+
${globalsVars}
|
|
23993
|
+
}`
|
|
23994
|
+
);
|
|
23995
|
+
}
|
|
23996
|
+
return blocks.join("\n\n");
|
|
23997
|
+
}
|
|
23998
|
+
|
|
22444
23999
|
// src/index.ts
|
|
22445
24000
|
var PIXELPLAY_VERSION = "1.0.3";
|
|
22446
24001
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -22514,8 +24069,11 @@ var PIXELPLAY_VERSION = "1.0.3";
|
|
|
22514
24069
|
Tooltip,
|
|
22515
24070
|
TooltipTrigger,
|
|
22516
24071
|
cn,
|
|
24072
|
+
darkTheme,
|
|
24073
|
+
generateThemeCSS,
|
|
22517
24074
|
getFileExtColor,
|
|
22518
24075
|
getFileExtLabel,
|
|
24076
|
+
lightTheme,
|
|
22519
24077
|
useToast
|
|
22520
24078
|
});
|
|
22521
24079
|
//# sourceMappingURL=index.js.map
|