@fakhrirafiki/theme-engine 0.2.5 → 0.2.6
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.js +123 -3
- package/dist/index.mjs +123 -3
- package/package.json +5 -2
package/dist/index.js
CHANGED
|
@@ -125,11 +125,56 @@ var ALL_CSS_PROPERTIES = [
|
|
|
125
125
|
];
|
|
126
126
|
|
|
127
127
|
// src/data/tweakcn-presets.ts
|
|
128
|
+
var DEFAULT_ACCENT_COLORS = {
|
|
129
|
+
DARK: {
|
|
130
|
+
"accent-info": "#38BDF8",
|
|
131
|
+
// bright sky blue
|
|
132
|
+
"accent-info-foreground": "#0F172A",
|
|
133
|
+
"accent-success": "#4ADE80",
|
|
134
|
+
// fresh green
|
|
135
|
+
"accent-success-foreground": "#0F172A",
|
|
136
|
+
"accent-warning": "#FBBF24",
|
|
137
|
+
// amber gold
|
|
138
|
+
"accent-warning-foreground": "#0F172A",
|
|
139
|
+
"accent-danger": "#F87171",
|
|
140
|
+
// vivid red
|
|
141
|
+
"accent-danger-foreground": "#0F172A",
|
|
142
|
+
"accent-brand": "#FB923C",
|
|
143
|
+
// warm orange coral (brand)
|
|
144
|
+
"accent-brand-foreground": "#0F172A",
|
|
145
|
+
"accent-feature": "#F472B6",
|
|
146
|
+
// playful pink for feature highlight
|
|
147
|
+
"accent-feature-foreground": "#0F172A",
|
|
148
|
+
"accent-highlight": "#A78BFA",
|
|
149
|
+
// lavender for accents
|
|
150
|
+
"accent-highlight-foreground": "#0F172A"
|
|
151
|
+
},
|
|
152
|
+
LIGHT: {
|
|
153
|
+
"accent-info": "#3B82F6",
|
|
154
|
+
"accent-info-foreground": "#FFFFFF",
|
|
155
|
+
"accent-success": "#22C55E",
|
|
156
|
+
"accent-success-foreground": "#FFFFFF",
|
|
157
|
+
"accent-warning": "#F59E0B",
|
|
158
|
+
"accent-warning-foreground": "#FFFFFF",
|
|
159
|
+
"accent-danger": "#EF4444",
|
|
160
|
+
"accent-danger-foreground": "#FFFFFF",
|
|
161
|
+
"accent-brand": "#F97316",
|
|
162
|
+
// Coral orange
|
|
163
|
+
"accent-brand-foreground": "#FFFFFF",
|
|
164
|
+
"accent-feature": "#FB923C",
|
|
165
|
+
// Lighter orange
|
|
166
|
+
"accent-feature-foreground": "#0F172A",
|
|
167
|
+
"accent-highlight": "#E879F9",
|
|
168
|
+
// fun pink-violet accent
|
|
169
|
+
"accent-highlight-foreground": "#0F172A"
|
|
170
|
+
}
|
|
171
|
+
};
|
|
128
172
|
var tweakcnPresets = {
|
|
129
173
|
"modern-minimal": {
|
|
130
174
|
label: "Modern Minimal",
|
|
131
175
|
styles: {
|
|
132
176
|
light: {
|
|
177
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
133
178
|
background: "#ffffff",
|
|
134
179
|
foreground: "#333333",
|
|
135
180
|
card: "#ffffff",
|
|
@@ -168,6 +213,7 @@ var tweakcnPresets = {
|
|
|
168
213
|
"font-mono": "JetBrains Mono, monospace"
|
|
169
214
|
},
|
|
170
215
|
dark: {
|
|
216
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
171
217
|
background: "#171717",
|
|
172
218
|
foreground: "#e5e5e5",
|
|
173
219
|
card: "#262626",
|
|
@@ -209,6 +255,7 @@ var tweakcnPresets = {
|
|
|
209
255
|
createdAt: "2025-06-26",
|
|
210
256
|
styles: {
|
|
211
257
|
light: {
|
|
258
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
212
259
|
background: "#fdfdfd",
|
|
213
260
|
foreground: "#000000",
|
|
214
261
|
card: "#fdfdfd",
|
|
@@ -255,6 +302,7 @@ var tweakcnPresets = {
|
|
|
255
302
|
spacing: "0.27rem"
|
|
256
303
|
},
|
|
257
304
|
dark: {
|
|
305
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
258
306
|
background: "#1a1b1e",
|
|
259
307
|
foreground: "#f0f0f0",
|
|
260
308
|
card: "#222327",
|
|
@@ -307,6 +355,7 @@ var tweakcnPresets = {
|
|
|
307
355
|
createdAt: "2025-04-19",
|
|
308
356
|
styles: {
|
|
309
357
|
light: {
|
|
358
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
310
359
|
background: "#faf5fa",
|
|
311
360
|
foreground: "#501854",
|
|
312
361
|
card: "#faf5fa",
|
|
@@ -342,6 +391,7 @@ var tweakcnPresets = {
|
|
|
342
391
|
radius: "0.5rem"
|
|
343
392
|
},
|
|
344
393
|
dark: {
|
|
394
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
345
395
|
background: "#221d27",
|
|
346
396
|
foreground: "#d2c4de",
|
|
347
397
|
card: "#2c2632",
|
|
@@ -382,6 +432,7 @@ var tweakcnPresets = {
|
|
|
382
432
|
createdAt: "2025-04-24",
|
|
383
433
|
styles: {
|
|
384
434
|
light: {
|
|
435
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
385
436
|
background: "#ffffff",
|
|
386
437
|
foreground: "#0f1419",
|
|
387
438
|
card: "#f7f8f8",
|
|
@@ -426,6 +477,7 @@ var tweakcnPresets = {
|
|
|
426
477
|
"shadow-offset-y": "2px"
|
|
427
478
|
},
|
|
428
479
|
dark: {
|
|
480
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
429
481
|
background: "#000000",
|
|
430
482
|
foreground: "#e7e9ea",
|
|
431
483
|
card: "#17181c",
|
|
@@ -467,6 +519,7 @@ var tweakcnPresets = {
|
|
|
467
519
|
createdAt: "2025-04-24",
|
|
468
520
|
styles: {
|
|
469
521
|
light: {
|
|
522
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
470
523
|
background: "#F1F0E5",
|
|
471
524
|
foreground: "#56453F",
|
|
472
525
|
card: "#F1F0E5",
|
|
@@ -511,6 +564,7 @@ var tweakcnPresets = {
|
|
|
511
564
|
"shadow-offset-y": "2px"
|
|
512
565
|
},
|
|
513
566
|
dark: {
|
|
567
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
514
568
|
background: "#2d2521",
|
|
515
569
|
foreground: "#F1F0E5",
|
|
516
570
|
card: "#3c332e",
|
|
@@ -552,6 +606,7 @@ var tweakcnPresets = {
|
|
|
552
606
|
createdAt: "2025-04-18",
|
|
553
607
|
styles: {
|
|
554
608
|
light: {
|
|
609
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
555
610
|
background: "#f6e6ee",
|
|
556
611
|
foreground: "#5b5b5b",
|
|
557
612
|
card: "#fdedc9",
|
|
@@ -596,6 +651,7 @@ var tweakcnPresets = {
|
|
|
596
651
|
"shadow-offset-y": "3px"
|
|
597
652
|
},
|
|
598
653
|
dark: {
|
|
654
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
599
655
|
background: "#12242e",
|
|
600
656
|
foreground: "#f3e3ea",
|
|
601
657
|
card: "#1c2e38",
|
|
@@ -640,6 +696,7 @@ var tweakcnPresets = {
|
|
|
640
696
|
createdAt: "2025-05-08",
|
|
641
697
|
styles: {
|
|
642
698
|
light: {
|
|
699
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
643
700
|
background: "#f8f7fa",
|
|
644
701
|
foreground: "#3d3c4f",
|
|
645
702
|
card: "#ffffff",
|
|
@@ -686,6 +743,7 @@ var tweakcnPresets = {
|
|
|
686
743
|
spacing: "0.25rem"
|
|
687
744
|
},
|
|
688
745
|
dark: {
|
|
746
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
689
747
|
background: "#1a1823",
|
|
690
748
|
foreground: "#e0ddef",
|
|
691
749
|
card: "#232030",
|
|
@@ -726,6 +784,7 @@ var tweakcnPresets = {
|
|
|
726
784
|
createdAt: "2025-05-10",
|
|
727
785
|
styles: {
|
|
728
786
|
light: {
|
|
787
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
729
788
|
background: "#f9f9f9",
|
|
730
789
|
foreground: "#3a3a3a",
|
|
731
790
|
card: "#ffffff",
|
|
@@ -772,6 +831,7 @@ var tweakcnPresets = {
|
|
|
772
831
|
spacing: "0.25rem"
|
|
773
832
|
},
|
|
774
833
|
dark: {
|
|
834
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
775
835
|
background: "#2b2b2b",
|
|
776
836
|
foreground: "#dcdcdc",
|
|
777
837
|
card: "#333333",
|
|
@@ -824,6 +884,7 @@ var tweakcnPresets = {
|
|
|
824
884
|
createdAt: "2025-04-28",
|
|
825
885
|
styles: {
|
|
826
886
|
light: {
|
|
887
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
827
888
|
background: "#cccccc",
|
|
828
889
|
foreground: "#1f1f1f",
|
|
829
890
|
card: "#b0b0b0",
|
|
@@ -870,6 +931,7 @@ var tweakcnPresets = {
|
|
|
870
931
|
spacing: "0.25rem"
|
|
871
932
|
},
|
|
872
933
|
dark: {
|
|
934
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
873
935
|
background: "#1a1a1a",
|
|
874
936
|
foreground: "#e0e0e0",
|
|
875
937
|
card: "#2a2a2a",
|
|
@@ -922,6 +984,7 @@ var tweakcnPresets = {
|
|
|
922
984
|
createdAt: "2025-04-18",
|
|
923
985
|
styles: {
|
|
924
986
|
light: {
|
|
987
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
925
988
|
background: "#eff1f5",
|
|
926
989
|
foreground: "#4c4f69",
|
|
927
990
|
card: "#ffffff",
|
|
@@ -966,6 +1029,7 @@ var tweakcnPresets = {
|
|
|
966
1029
|
"shadow-offset-y": "4px"
|
|
967
1030
|
},
|
|
968
1031
|
dark: {
|
|
1032
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
969
1033
|
background: "#181825",
|
|
970
1034
|
foreground: "#cdd6f4",
|
|
971
1035
|
card: "#1e1e2e",
|
|
@@ -1006,6 +1070,7 @@ var tweakcnPresets = {
|
|
|
1006
1070
|
createdAt: "2025-04-17",
|
|
1007
1071
|
styles: {
|
|
1008
1072
|
light: {
|
|
1073
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1009
1074
|
background: "#f0f0f0",
|
|
1010
1075
|
foreground: "#333333",
|
|
1011
1076
|
card: "#f5f5f5",
|
|
@@ -1050,6 +1115,7 @@ var tweakcnPresets = {
|
|
|
1050
1115
|
"shadow-offset-y": "2px"
|
|
1051
1116
|
},
|
|
1052
1117
|
dark: {
|
|
1118
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1053
1119
|
background: "#1a1a1a",
|
|
1054
1120
|
foreground: "#d9d9d9",
|
|
1055
1121
|
card: "#202020",
|
|
@@ -1093,6 +1159,7 @@ var tweakcnPresets = {
|
|
|
1093
1159
|
createdAt: "2025-04-01",
|
|
1094
1160
|
styles: {
|
|
1095
1161
|
light: {
|
|
1162
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1096
1163
|
background: "#e8f0f0",
|
|
1097
1164
|
foreground: "#0a4a55",
|
|
1098
1165
|
card: "#f2f7f7",
|
|
@@ -1137,6 +1204,7 @@ var tweakcnPresets = {
|
|
|
1137
1204
|
"shadow-offset-y": "1px"
|
|
1138
1205
|
},
|
|
1139
1206
|
dark: {
|
|
1207
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1140
1208
|
background: "#0a1a20",
|
|
1141
1209
|
foreground: "#4de8e8",
|
|
1142
1210
|
card: "#0c2025",
|
|
@@ -1186,6 +1254,7 @@ var tweakcnPresets = {
|
|
|
1186
1254
|
label: "Kodama Grove",
|
|
1187
1255
|
styles: {
|
|
1188
1256
|
light: {
|
|
1257
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1189
1258
|
background: "#e4d7b0",
|
|
1190
1259
|
foreground: "#5c4b3e",
|
|
1191
1260
|
card: "#e7dbbf",
|
|
@@ -1230,6 +1299,7 @@ var tweakcnPresets = {
|
|
|
1230
1299
|
"shadow-offset-y": "3px"
|
|
1231
1300
|
},
|
|
1232
1301
|
dark: {
|
|
1302
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1233
1303
|
background: "#3a3529",
|
|
1234
1304
|
foreground: "#ede4d4",
|
|
1235
1305
|
card: "#413c33",
|
|
@@ -1270,6 +1340,7 @@ var tweakcnPresets = {
|
|
|
1270
1340
|
createdAt: "2025-04-04",
|
|
1271
1341
|
styles: {
|
|
1272
1342
|
light: {
|
|
1343
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1273
1344
|
background: "#f5f5ff",
|
|
1274
1345
|
foreground: "#2a2a4a",
|
|
1275
1346
|
card: "#ffffff",
|
|
@@ -1314,6 +1385,7 @@ var tweakcnPresets = {
|
|
|
1314
1385
|
"shadow-offset-y": "4px"
|
|
1315
1386
|
},
|
|
1316
1387
|
dark: {
|
|
1388
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1317
1389
|
background: "#0f0f1a",
|
|
1318
1390
|
foreground: "#e2e2f5",
|
|
1319
1391
|
card: "#1a1a2e",
|
|
@@ -1355,6 +1427,7 @@ var tweakcnPresets = {
|
|
|
1355
1427
|
createdAt: "2025-04-09",
|
|
1356
1428
|
styles: {
|
|
1357
1429
|
light: {
|
|
1430
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1358
1431
|
background: "#e8ebed",
|
|
1359
1432
|
foreground: "#333333",
|
|
1360
1433
|
card: "#ffffff",
|
|
@@ -1399,6 +1472,7 @@ var tweakcnPresets = {
|
|
|
1399
1472
|
"shadow-offset-y": "1px"
|
|
1400
1473
|
},
|
|
1401
1474
|
dark: {
|
|
1475
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1402
1476
|
background: "#1c2433",
|
|
1403
1477
|
foreground: "#e5e5e5",
|
|
1404
1478
|
card: "#2a3040",
|
|
@@ -1439,6 +1513,7 @@ var tweakcnPresets = {
|
|
|
1439
1513
|
createdAt: "2025-04-03",
|
|
1440
1514
|
styles: {
|
|
1441
1515
|
light: {
|
|
1516
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1442
1517
|
background: "#fff0f8",
|
|
1443
1518
|
foreground: "#91185c",
|
|
1444
1519
|
card: "#fff7fc",
|
|
@@ -1483,6 +1558,7 @@ var tweakcnPresets = {
|
|
|
1483
1558
|
"shadow-offset-y": "3px"
|
|
1484
1559
|
},
|
|
1485
1560
|
dark: {
|
|
1561
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1486
1562
|
background: "#1a0922",
|
|
1487
1563
|
foreground: "#ffb3ff",
|
|
1488
1564
|
card: "#2a1435",
|
|
@@ -1526,6 +1602,7 @@ var tweakcnPresets = {
|
|
|
1526
1602
|
label: "Nature",
|
|
1527
1603
|
styles: {
|
|
1528
1604
|
light: {
|
|
1605
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1529
1606
|
background: "#f8f5f0",
|
|
1530
1607
|
foreground: "#3e2723",
|
|
1531
1608
|
card: "#f8f5f0",
|
|
@@ -1564,6 +1641,7 @@ var tweakcnPresets = {
|
|
|
1564
1641
|
"font-mono": "Source Code Pro, monospace"
|
|
1565
1642
|
},
|
|
1566
1643
|
dark: {
|
|
1644
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1567
1645
|
background: "#1c2a1f",
|
|
1568
1646
|
foreground: "#f0ebe5",
|
|
1569
1647
|
card: "#2d3a2e",
|
|
@@ -1604,6 +1682,7 @@ var tweakcnPresets = {
|
|
|
1604
1682
|
label: "Bold Tech",
|
|
1605
1683
|
styles: {
|
|
1606
1684
|
light: {
|
|
1685
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1607
1686
|
background: "#ffffff",
|
|
1608
1687
|
foreground: "#312e81",
|
|
1609
1688
|
card: "#ffffff",
|
|
@@ -1648,6 +1727,7 @@ var tweakcnPresets = {
|
|
|
1648
1727
|
"shadow-offset-y": "2px"
|
|
1649
1728
|
},
|
|
1650
1729
|
dark: {
|
|
1730
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1651
1731
|
background: "#0f172a",
|
|
1652
1732
|
foreground: "#e0e7ff",
|
|
1653
1733
|
card: "#1e1b4b",
|
|
@@ -1688,6 +1768,7 @@ var tweakcnPresets = {
|
|
|
1688
1768
|
label: "Elegant Luxury",
|
|
1689
1769
|
styles: {
|
|
1690
1770
|
light: {
|
|
1771
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1691
1772
|
background: "#faf7f5",
|
|
1692
1773
|
foreground: "#1a1a1a",
|
|
1693
1774
|
card: "#faf7f5",
|
|
@@ -1732,6 +1813,7 @@ var tweakcnPresets = {
|
|
|
1732
1813
|
"shadow-offset-y": "1px"
|
|
1733
1814
|
},
|
|
1734
1815
|
dark: {
|
|
1816
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1735
1817
|
background: "#1c1917",
|
|
1736
1818
|
foreground: "#f5f5f4",
|
|
1737
1819
|
card: "#292524",
|
|
@@ -1773,6 +1855,7 @@ var tweakcnPresets = {
|
|
|
1773
1855
|
createdAt: "2025-04-27",
|
|
1774
1856
|
styles: {
|
|
1775
1857
|
light: {
|
|
1858
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1776
1859
|
background: "#ffffff",
|
|
1777
1860
|
foreground: "#262626",
|
|
1778
1861
|
card: "#ffffff",
|
|
@@ -1819,6 +1902,7 @@ var tweakcnPresets = {
|
|
|
1819
1902
|
spacing: "0.25rem"
|
|
1820
1903
|
},
|
|
1821
1904
|
dark: {
|
|
1905
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1822
1906
|
background: "#171717",
|
|
1823
1907
|
foreground: "#e5e5e5",
|
|
1824
1908
|
card: "#262626",
|
|
@@ -1859,6 +1943,7 @@ var tweakcnPresets = {
|
|
|
1859
1943
|
createdAt: "2025-04-27",
|
|
1860
1944
|
styles: {
|
|
1861
1945
|
light: {
|
|
1946
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1862
1947
|
background: "#fcfcfc",
|
|
1863
1948
|
foreground: "#171717",
|
|
1864
1949
|
card: "#fcfcfc",
|
|
@@ -1904,6 +1989,7 @@ var tweakcnPresets = {
|
|
|
1904
1989
|
"letter-spacing": "0.025em"
|
|
1905
1990
|
},
|
|
1906
1991
|
dark: {
|
|
1992
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1907
1993
|
background: "#121212",
|
|
1908
1994
|
foreground: "#e2e8f0",
|
|
1909
1995
|
card: "#171717",
|
|
@@ -1943,6 +2029,7 @@ var tweakcnPresets = {
|
|
|
1943
2029
|
label: "Neo Brutalism",
|
|
1944
2030
|
styles: {
|
|
1945
2031
|
light: {
|
|
2032
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1946
2033
|
background: "#ffffff",
|
|
1947
2034
|
foreground: "#000000",
|
|
1948
2035
|
card: "#ffffff",
|
|
@@ -1986,6 +2073,7 @@ var tweakcnPresets = {
|
|
|
1986
2073
|
"shadow-offset-y": "4px"
|
|
1987
2074
|
},
|
|
1988
2075
|
dark: {
|
|
2076
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1989
2077
|
background: "#000000",
|
|
1990
2078
|
foreground: "#ffffff",
|
|
1991
2079
|
card: "#333333",
|
|
@@ -2027,6 +2115,7 @@ var tweakcnPresets = {
|
|
|
2027
2115
|
createdAt: "2025-04-12",
|
|
2028
2116
|
styles: {
|
|
2029
2117
|
light: {
|
|
2118
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2030
2119
|
background: "#FDFBF7",
|
|
2031
2120
|
foreground: "#4A3B33",
|
|
2032
2121
|
card: "#F8F4EE",
|
|
@@ -2071,6 +2160,7 @@ var tweakcnPresets = {
|
|
|
2071
2160
|
"shadow-offset-y": "2px"
|
|
2072
2161
|
},
|
|
2073
2162
|
dark: {
|
|
2163
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2074
2164
|
background: "#1C1917",
|
|
2075
2165
|
foreground: "#F5F5F4",
|
|
2076
2166
|
card: "#292524",
|
|
@@ -2112,6 +2202,7 @@ var tweakcnPresets = {
|
|
|
2112
2202
|
label: "Claymorphism",
|
|
2113
2203
|
styles: {
|
|
2114
2204
|
light: {
|
|
2205
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2115
2206
|
background: "#e7e5e4",
|
|
2116
2207
|
foreground: "#1e293b",
|
|
2117
2208
|
card: "#f5f5f4",
|
|
@@ -2156,6 +2247,7 @@ var tweakcnPresets = {
|
|
|
2156
2247
|
"shadow-offset-y": "2px"
|
|
2157
2248
|
},
|
|
2158
2249
|
dark: {
|
|
2250
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2159
2251
|
background: "#1e1b18",
|
|
2160
2252
|
foreground: "#e2e8f0",
|
|
2161
2253
|
card: "#2c2825",
|
|
@@ -2197,6 +2289,7 @@ var tweakcnPresets = {
|
|
|
2197
2289
|
label: "Cyberpunk",
|
|
2198
2290
|
styles: {
|
|
2199
2291
|
light: {
|
|
2292
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2200
2293
|
background: "#f8f9fa",
|
|
2201
2294
|
foreground: "#0c0c1d",
|
|
2202
2295
|
card: "#ffffff",
|
|
@@ -2280,6 +2373,7 @@ var tweakcnPresets = {
|
|
|
2280
2373
|
label: "Pastel Dreams",
|
|
2281
2374
|
styles: {
|
|
2282
2375
|
light: {
|
|
2376
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2283
2377
|
background: "#f7f3f9",
|
|
2284
2378
|
foreground: "#374151",
|
|
2285
2379
|
card: "#ffffff",
|
|
@@ -2364,6 +2458,7 @@ var tweakcnPresets = {
|
|
|
2364
2458
|
label: "Clean Slate",
|
|
2365
2459
|
styles: {
|
|
2366
2460
|
light: {
|
|
2461
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2367
2462
|
background: "#f8fafc",
|
|
2368
2463
|
foreground: "#1e293b",
|
|
2369
2464
|
card: "#ffffff",
|
|
@@ -2408,6 +2503,7 @@ var tweakcnPresets = {
|
|
|
2408
2503
|
"shadow-offset-y": "4px"
|
|
2409
2504
|
},
|
|
2410
2505
|
dark: {
|
|
2506
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2411
2507
|
background: "#0f172a",
|
|
2412
2508
|
foreground: "#e2e8f0",
|
|
2413
2509
|
card: "#1e293b",
|
|
@@ -2448,6 +2544,7 @@ var tweakcnPresets = {
|
|
|
2448
2544
|
label: "Caffeine",
|
|
2449
2545
|
styles: {
|
|
2450
2546
|
light: {
|
|
2547
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2451
2548
|
background: "#f9f9f9",
|
|
2452
2549
|
foreground: "#202020",
|
|
2453
2550
|
card: "#fcfcfc",
|
|
@@ -2483,6 +2580,7 @@ var tweakcnPresets = {
|
|
|
2483
2580
|
radius: "0.5rem"
|
|
2484
2581
|
},
|
|
2485
2582
|
dark: {
|
|
2583
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2486
2584
|
background: "#111111",
|
|
2487
2585
|
foreground: "#eeeeee",
|
|
2488
2586
|
card: "#191919",
|
|
@@ -2523,6 +2621,7 @@ var tweakcnPresets = {
|
|
|
2523
2621
|
label: "Ocean Breeze",
|
|
2524
2622
|
styles: {
|
|
2525
2623
|
light: {
|
|
2624
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2526
2625
|
background: "#f0f8ff",
|
|
2527
2626
|
foreground: "#374151",
|
|
2528
2627
|
card: "#ffffff",
|
|
@@ -2567,6 +2666,7 @@ var tweakcnPresets = {
|
|
|
2567
2666
|
"shadow-offset-y": "4px"
|
|
2568
2667
|
},
|
|
2569
2668
|
dark: {
|
|
2669
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2570
2670
|
background: "#0f172a",
|
|
2571
2671
|
foreground: "#d1d5db",
|
|
2572
2672
|
card: "#1e293b",
|
|
@@ -2607,6 +2707,7 @@ var tweakcnPresets = {
|
|
|
2607
2707
|
label: "Retro Arcade",
|
|
2608
2708
|
styles: {
|
|
2609
2709
|
light: {
|
|
2710
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2610
2711
|
background: "#fdf6e3",
|
|
2611
2712
|
foreground: "#073642",
|
|
2612
2713
|
card: "#eee8d5",
|
|
@@ -2650,6 +2751,7 @@ var tweakcnPresets = {
|
|
|
2650
2751
|
"shadow-offset-y": "2px"
|
|
2651
2752
|
},
|
|
2652
2753
|
dark: {
|
|
2754
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2653
2755
|
background: "#002b36",
|
|
2654
2756
|
foreground: "#93a1a1",
|
|
2655
2757
|
card: "#073642",
|
|
@@ -2690,6 +2792,7 @@ var tweakcnPresets = {
|
|
|
2690
2792
|
label: "Midnight Bloom",
|
|
2691
2793
|
styles: {
|
|
2692
2794
|
light: {
|
|
2795
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2693
2796
|
background: "#f9f9f9",
|
|
2694
2797
|
foreground: "#333333",
|
|
2695
2798
|
card: "#ffffff",
|
|
@@ -2734,6 +2837,7 @@ var tweakcnPresets = {
|
|
|
2734
2837
|
"shadow-offset-y": "5px"
|
|
2735
2838
|
},
|
|
2736
2839
|
dark: {
|
|
2840
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2737
2841
|
background: "#1a1d23",
|
|
2738
2842
|
foreground: "#e5e5e5",
|
|
2739
2843
|
card: "#2f3436",
|
|
@@ -2774,6 +2878,7 @@ var tweakcnPresets = {
|
|
|
2774
2878
|
label: "Candyland",
|
|
2775
2879
|
styles: {
|
|
2776
2880
|
light: {
|
|
2881
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2777
2882
|
background: "#f7f9fa",
|
|
2778
2883
|
foreground: "#333333",
|
|
2779
2884
|
card: "#ffffff",
|
|
@@ -2811,6 +2916,7 @@ var tweakcnPresets = {
|
|
|
2811
2916
|
"font-mono": "Roboto Mono, monospace"
|
|
2812
2917
|
},
|
|
2813
2918
|
dark: {
|
|
2919
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2814
2920
|
background: "#1a1d23",
|
|
2815
2921
|
foreground: "#e5e5e5",
|
|
2816
2922
|
card: "#2f3436",
|
|
@@ -2851,6 +2957,7 @@ var tweakcnPresets = {
|
|
|
2851
2957
|
label: "Northern Lights",
|
|
2852
2958
|
styles: {
|
|
2853
2959
|
light: {
|
|
2960
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2854
2961
|
background: "#f9f9fa",
|
|
2855
2962
|
foreground: "#333333",
|
|
2856
2963
|
card: "#ffffff",
|
|
@@ -2889,6 +2996,7 @@ var tweakcnPresets = {
|
|
|
2889
2996
|
"font-mono": "JetBrains Mono, monospace"
|
|
2890
2997
|
},
|
|
2891
2998
|
dark: {
|
|
2999
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2892
3000
|
background: "#1a1d23",
|
|
2893
3001
|
foreground: "#e5e5e5",
|
|
2894
3002
|
card: "#2f3436",
|
|
@@ -2929,6 +3037,7 @@ var tweakcnPresets = {
|
|
|
2929
3037
|
label: "Vintage Paper",
|
|
2930
3038
|
styles: {
|
|
2931
3039
|
light: {
|
|
3040
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2932
3041
|
background: "#f5f1e6",
|
|
2933
3042
|
foreground: "#4a3f35",
|
|
2934
3043
|
card: "#fffcf5",
|
|
@@ -2973,6 +3082,7 @@ var tweakcnPresets = {
|
|
|
2973
3082
|
"shadow-offset-y": "3px"
|
|
2974
3083
|
},
|
|
2975
3084
|
dark: {
|
|
3085
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2976
3086
|
background: "#2d2621",
|
|
2977
3087
|
foreground: "#ece5d8",
|
|
2978
3088
|
card: "#3a322c",
|
|
@@ -3013,6 +3123,7 @@ var tweakcnPresets = {
|
|
|
3013
3123
|
label: "Sunset Horizon",
|
|
3014
3124
|
styles: {
|
|
3015
3125
|
light: {
|
|
3126
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3016
3127
|
background: "#fff9f5",
|
|
3017
3128
|
foreground: "#3d3436",
|
|
3018
3129
|
card: "#ffffff",
|
|
@@ -3057,6 +3168,7 @@ var tweakcnPresets = {
|
|
|
3057
3168
|
"shadow-offset-y": "6px"
|
|
3058
3169
|
},
|
|
3059
3170
|
dark: {
|
|
3171
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3060
3172
|
background: "#2a2024",
|
|
3061
3173
|
foreground: "#f2e9e4",
|
|
3062
3174
|
card: "#392f35",
|
|
@@ -3098,6 +3210,7 @@ var tweakcnPresets = {
|
|
|
3098
3210
|
createdAt: "2025-04-16",
|
|
3099
3211
|
styles: {
|
|
3100
3212
|
light: {
|
|
3213
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3101
3214
|
background: "#f5f7fa",
|
|
3102
3215
|
foreground: "#1a2238",
|
|
3103
3216
|
card: "#e3eaf2",
|
|
@@ -3134,6 +3247,7 @@ var tweakcnPresets = {
|
|
|
3134
3247
|
radius: "0.5rem"
|
|
3135
3248
|
},
|
|
3136
3249
|
dark: {
|
|
3250
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3137
3251
|
background: "#181a24",
|
|
3138
3252
|
foreground: "#e6eaf3",
|
|
3139
3253
|
card: "#23243a",
|
|
@@ -3174,6 +3288,7 @@ var tweakcnPresets = {
|
|
|
3174
3288
|
label: "Claude",
|
|
3175
3289
|
styles: {
|
|
3176
3290
|
light: {
|
|
3291
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3177
3292
|
background: "#faf9f5",
|
|
3178
3293
|
foreground: "#3d3929",
|
|
3179
3294
|
card: "#faf9f5",
|
|
@@ -3209,6 +3324,7 @@ var tweakcnPresets = {
|
|
|
3209
3324
|
radius: "0.5rem"
|
|
3210
3325
|
},
|
|
3211
3326
|
dark: {
|
|
3327
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3212
3328
|
background: "#262624",
|
|
3213
3329
|
foreground: "#c3c0b6",
|
|
3214
3330
|
card: "#262624",
|
|
@@ -3249,6 +3365,7 @@ var tweakcnPresets = {
|
|
|
3249
3365
|
createdAt: "2025-04-13",
|
|
3250
3366
|
styles: {
|
|
3251
3367
|
light: {
|
|
3368
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3252
3369
|
background: "oklch(0.99 0 0)",
|
|
3253
3370
|
foreground: "oklch(0 0 0)",
|
|
3254
3371
|
card: "oklch(1.00 0 0)",
|
|
@@ -3293,6 +3410,7 @@ var tweakcnPresets = {
|
|
|
3293
3410
|
"shadow-offset-y": "1px"
|
|
3294
3411
|
},
|
|
3295
3412
|
dark: {
|
|
3413
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3296
3414
|
background: "oklch(0 0 0)",
|
|
3297
3415
|
foreground: "oklch(1.00 0 0)",
|
|
3298
3416
|
card: "oklch(0.14 0 0)",
|
|
@@ -3336,6 +3454,7 @@ var tweakcnPresets = {
|
|
|
3336
3454
|
createdAt: "2025-04-20",
|
|
3337
3455
|
styles: {
|
|
3338
3456
|
light: {
|
|
3457
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3339
3458
|
background: "#ffffff",
|
|
3340
3459
|
foreground: "#0a0a0a",
|
|
3341
3460
|
card: "#ffffff",
|
|
@@ -3380,6 +3499,7 @@ var tweakcnPresets = {
|
|
|
3380
3499
|
"shadow-offset-y": "1px"
|
|
3381
3500
|
},
|
|
3382
3501
|
dark: {
|
|
3502
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3383
3503
|
background: "#0a0a0a",
|
|
3384
3504
|
foreground: "#fafafa",
|
|
3385
3505
|
card: "#191919",
|
|
@@ -3420,6 +3540,7 @@ var tweakcnPresets = {
|
|
|
3420
3540
|
createdAt: "2025-07-08",
|
|
3421
3541
|
styles: {
|
|
3422
3542
|
light: {
|
|
3543
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3423
3544
|
background: "#f7f9f3",
|
|
3424
3545
|
foreground: "#000000",
|
|
3425
3546
|
card: "#ffffff",
|
|
@@ -3466,6 +3587,7 @@ var tweakcnPresets = {
|
|
|
3466
3587
|
spacing: "0.25rem"
|
|
3467
3588
|
},
|
|
3468
3589
|
dark: {
|
|
3590
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3469
3591
|
background: "#000000",
|
|
3470
3592
|
foreground: "#ffffff",
|
|
3471
3593
|
card: "#1a212b",
|
|
@@ -3525,9 +3647,7 @@ function getPresetLabels() {
|
|
|
3525
3647
|
}
|
|
3526
3648
|
function searchPresets(query) {
|
|
3527
3649
|
const lowerQuery = query.toLowerCase();
|
|
3528
|
-
return Object.entries(tweakcnPresets).filter(
|
|
3529
|
-
([id, preset]) => preset.label.toLowerCase().includes(lowerQuery) || id.toLowerCase().includes(lowerQuery)
|
|
3530
|
-
).map(([id, preset]) => ({ id, preset }));
|
|
3650
|
+
return Object.entries(tweakcnPresets).filter(([id, preset]) => preset.label.toLowerCase().includes(lowerQuery) || id.toLowerCase().includes(lowerQuery)).map(([id, preset]) => ({ id, preset }));
|
|
3531
3651
|
}
|
|
3532
3652
|
function getPresetsCount() {
|
|
3533
3653
|
return Object.keys(tweakcnPresets).length;
|
package/dist/index.mjs
CHANGED
|
@@ -84,11 +84,56 @@ var ALL_CSS_PROPERTIES = [
|
|
|
84
84
|
];
|
|
85
85
|
|
|
86
86
|
// src/data/tweakcn-presets.ts
|
|
87
|
+
var DEFAULT_ACCENT_COLORS = {
|
|
88
|
+
DARK: {
|
|
89
|
+
"accent-info": "#38BDF8",
|
|
90
|
+
// bright sky blue
|
|
91
|
+
"accent-info-foreground": "#0F172A",
|
|
92
|
+
"accent-success": "#4ADE80",
|
|
93
|
+
// fresh green
|
|
94
|
+
"accent-success-foreground": "#0F172A",
|
|
95
|
+
"accent-warning": "#FBBF24",
|
|
96
|
+
// amber gold
|
|
97
|
+
"accent-warning-foreground": "#0F172A",
|
|
98
|
+
"accent-danger": "#F87171",
|
|
99
|
+
// vivid red
|
|
100
|
+
"accent-danger-foreground": "#0F172A",
|
|
101
|
+
"accent-brand": "#FB923C",
|
|
102
|
+
// warm orange coral (brand)
|
|
103
|
+
"accent-brand-foreground": "#0F172A",
|
|
104
|
+
"accent-feature": "#F472B6",
|
|
105
|
+
// playful pink for feature highlight
|
|
106
|
+
"accent-feature-foreground": "#0F172A",
|
|
107
|
+
"accent-highlight": "#A78BFA",
|
|
108
|
+
// lavender for accents
|
|
109
|
+
"accent-highlight-foreground": "#0F172A"
|
|
110
|
+
},
|
|
111
|
+
LIGHT: {
|
|
112
|
+
"accent-info": "#3B82F6",
|
|
113
|
+
"accent-info-foreground": "#FFFFFF",
|
|
114
|
+
"accent-success": "#22C55E",
|
|
115
|
+
"accent-success-foreground": "#FFFFFF",
|
|
116
|
+
"accent-warning": "#F59E0B",
|
|
117
|
+
"accent-warning-foreground": "#FFFFFF",
|
|
118
|
+
"accent-danger": "#EF4444",
|
|
119
|
+
"accent-danger-foreground": "#FFFFFF",
|
|
120
|
+
"accent-brand": "#F97316",
|
|
121
|
+
// Coral orange
|
|
122
|
+
"accent-brand-foreground": "#FFFFFF",
|
|
123
|
+
"accent-feature": "#FB923C",
|
|
124
|
+
// Lighter orange
|
|
125
|
+
"accent-feature-foreground": "#0F172A",
|
|
126
|
+
"accent-highlight": "#E879F9",
|
|
127
|
+
// fun pink-violet accent
|
|
128
|
+
"accent-highlight-foreground": "#0F172A"
|
|
129
|
+
}
|
|
130
|
+
};
|
|
87
131
|
var tweakcnPresets = {
|
|
88
132
|
"modern-minimal": {
|
|
89
133
|
label: "Modern Minimal",
|
|
90
134
|
styles: {
|
|
91
135
|
light: {
|
|
136
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
92
137
|
background: "#ffffff",
|
|
93
138
|
foreground: "#333333",
|
|
94
139
|
card: "#ffffff",
|
|
@@ -127,6 +172,7 @@ var tweakcnPresets = {
|
|
|
127
172
|
"font-mono": "JetBrains Mono, monospace"
|
|
128
173
|
},
|
|
129
174
|
dark: {
|
|
175
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
130
176
|
background: "#171717",
|
|
131
177
|
foreground: "#e5e5e5",
|
|
132
178
|
card: "#262626",
|
|
@@ -168,6 +214,7 @@ var tweakcnPresets = {
|
|
|
168
214
|
createdAt: "2025-06-26",
|
|
169
215
|
styles: {
|
|
170
216
|
light: {
|
|
217
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
171
218
|
background: "#fdfdfd",
|
|
172
219
|
foreground: "#000000",
|
|
173
220
|
card: "#fdfdfd",
|
|
@@ -214,6 +261,7 @@ var tweakcnPresets = {
|
|
|
214
261
|
spacing: "0.27rem"
|
|
215
262
|
},
|
|
216
263
|
dark: {
|
|
264
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
217
265
|
background: "#1a1b1e",
|
|
218
266
|
foreground: "#f0f0f0",
|
|
219
267
|
card: "#222327",
|
|
@@ -266,6 +314,7 @@ var tweakcnPresets = {
|
|
|
266
314
|
createdAt: "2025-04-19",
|
|
267
315
|
styles: {
|
|
268
316
|
light: {
|
|
317
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
269
318
|
background: "#faf5fa",
|
|
270
319
|
foreground: "#501854",
|
|
271
320
|
card: "#faf5fa",
|
|
@@ -301,6 +350,7 @@ var tweakcnPresets = {
|
|
|
301
350
|
radius: "0.5rem"
|
|
302
351
|
},
|
|
303
352
|
dark: {
|
|
353
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
304
354
|
background: "#221d27",
|
|
305
355
|
foreground: "#d2c4de",
|
|
306
356
|
card: "#2c2632",
|
|
@@ -341,6 +391,7 @@ var tweakcnPresets = {
|
|
|
341
391
|
createdAt: "2025-04-24",
|
|
342
392
|
styles: {
|
|
343
393
|
light: {
|
|
394
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
344
395
|
background: "#ffffff",
|
|
345
396
|
foreground: "#0f1419",
|
|
346
397
|
card: "#f7f8f8",
|
|
@@ -385,6 +436,7 @@ var tweakcnPresets = {
|
|
|
385
436
|
"shadow-offset-y": "2px"
|
|
386
437
|
},
|
|
387
438
|
dark: {
|
|
439
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
388
440
|
background: "#000000",
|
|
389
441
|
foreground: "#e7e9ea",
|
|
390
442
|
card: "#17181c",
|
|
@@ -426,6 +478,7 @@ var tweakcnPresets = {
|
|
|
426
478
|
createdAt: "2025-04-24",
|
|
427
479
|
styles: {
|
|
428
480
|
light: {
|
|
481
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
429
482
|
background: "#F1F0E5",
|
|
430
483
|
foreground: "#56453F",
|
|
431
484
|
card: "#F1F0E5",
|
|
@@ -470,6 +523,7 @@ var tweakcnPresets = {
|
|
|
470
523
|
"shadow-offset-y": "2px"
|
|
471
524
|
},
|
|
472
525
|
dark: {
|
|
526
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
473
527
|
background: "#2d2521",
|
|
474
528
|
foreground: "#F1F0E5",
|
|
475
529
|
card: "#3c332e",
|
|
@@ -511,6 +565,7 @@ var tweakcnPresets = {
|
|
|
511
565
|
createdAt: "2025-04-18",
|
|
512
566
|
styles: {
|
|
513
567
|
light: {
|
|
568
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
514
569
|
background: "#f6e6ee",
|
|
515
570
|
foreground: "#5b5b5b",
|
|
516
571
|
card: "#fdedc9",
|
|
@@ -555,6 +610,7 @@ var tweakcnPresets = {
|
|
|
555
610
|
"shadow-offset-y": "3px"
|
|
556
611
|
},
|
|
557
612
|
dark: {
|
|
613
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
558
614
|
background: "#12242e",
|
|
559
615
|
foreground: "#f3e3ea",
|
|
560
616
|
card: "#1c2e38",
|
|
@@ -599,6 +655,7 @@ var tweakcnPresets = {
|
|
|
599
655
|
createdAt: "2025-05-08",
|
|
600
656
|
styles: {
|
|
601
657
|
light: {
|
|
658
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
602
659
|
background: "#f8f7fa",
|
|
603
660
|
foreground: "#3d3c4f",
|
|
604
661
|
card: "#ffffff",
|
|
@@ -645,6 +702,7 @@ var tweakcnPresets = {
|
|
|
645
702
|
spacing: "0.25rem"
|
|
646
703
|
},
|
|
647
704
|
dark: {
|
|
705
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
648
706
|
background: "#1a1823",
|
|
649
707
|
foreground: "#e0ddef",
|
|
650
708
|
card: "#232030",
|
|
@@ -685,6 +743,7 @@ var tweakcnPresets = {
|
|
|
685
743
|
createdAt: "2025-05-10",
|
|
686
744
|
styles: {
|
|
687
745
|
light: {
|
|
746
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
688
747
|
background: "#f9f9f9",
|
|
689
748
|
foreground: "#3a3a3a",
|
|
690
749
|
card: "#ffffff",
|
|
@@ -731,6 +790,7 @@ var tweakcnPresets = {
|
|
|
731
790
|
spacing: "0.25rem"
|
|
732
791
|
},
|
|
733
792
|
dark: {
|
|
793
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
734
794
|
background: "#2b2b2b",
|
|
735
795
|
foreground: "#dcdcdc",
|
|
736
796
|
card: "#333333",
|
|
@@ -783,6 +843,7 @@ var tweakcnPresets = {
|
|
|
783
843
|
createdAt: "2025-04-28",
|
|
784
844
|
styles: {
|
|
785
845
|
light: {
|
|
846
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
786
847
|
background: "#cccccc",
|
|
787
848
|
foreground: "#1f1f1f",
|
|
788
849
|
card: "#b0b0b0",
|
|
@@ -829,6 +890,7 @@ var tweakcnPresets = {
|
|
|
829
890
|
spacing: "0.25rem"
|
|
830
891
|
},
|
|
831
892
|
dark: {
|
|
893
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
832
894
|
background: "#1a1a1a",
|
|
833
895
|
foreground: "#e0e0e0",
|
|
834
896
|
card: "#2a2a2a",
|
|
@@ -881,6 +943,7 @@ var tweakcnPresets = {
|
|
|
881
943
|
createdAt: "2025-04-18",
|
|
882
944
|
styles: {
|
|
883
945
|
light: {
|
|
946
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
884
947
|
background: "#eff1f5",
|
|
885
948
|
foreground: "#4c4f69",
|
|
886
949
|
card: "#ffffff",
|
|
@@ -925,6 +988,7 @@ var tweakcnPresets = {
|
|
|
925
988
|
"shadow-offset-y": "4px"
|
|
926
989
|
},
|
|
927
990
|
dark: {
|
|
991
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
928
992
|
background: "#181825",
|
|
929
993
|
foreground: "#cdd6f4",
|
|
930
994
|
card: "#1e1e2e",
|
|
@@ -965,6 +1029,7 @@ var tweakcnPresets = {
|
|
|
965
1029
|
createdAt: "2025-04-17",
|
|
966
1030
|
styles: {
|
|
967
1031
|
light: {
|
|
1032
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
968
1033
|
background: "#f0f0f0",
|
|
969
1034
|
foreground: "#333333",
|
|
970
1035
|
card: "#f5f5f5",
|
|
@@ -1009,6 +1074,7 @@ var tweakcnPresets = {
|
|
|
1009
1074
|
"shadow-offset-y": "2px"
|
|
1010
1075
|
},
|
|
1011
1076
|
dark: {
|
|
1077
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1012
1078
|
background: "#1a1a1a",
|
|
1013
1079
|
foreground: "#d9d9d9",
|
|
1014
1080
|
card: "#202020",
|
|
@@ -1052,6 +1118,7 @@ var tweakcnPresets = {
|
|
|
1052
1118
|
createdAt: "2025-04-01",
|
|
1053
1119
|
styles: {
|
|
1054
1120
|
light: {
|
|
1121
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1055
1122
|
background: "#e8f0f0",
|
|
1056
1123
|
foreground: "#0a4a55",
|
|
1057
1124
|
card: "#f2f7f7",
|
|
@@ -1096,6 +1163,7 @@ var tweakcnPresets = {
|
|
|
1096
1163
|
"shadow-offset-y": "1px"
|
|
1097
1164
|
},
|
|
1098
1165
|
dark: {
|
|
1166
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1099
1167
|
background: "#0a1a20",
|
|
1100
1168
|
foreground: "#4de8e8",
|
|
1101
1169
|
card: "#0c2025",
|
|
@@ -1145,6 +1213,7 @@ var tweakcnPresets = {
|
|
|
1145
1213
|
label: "Kodama Grove",
|
|
1146
1214
|
styles: {
|
|
1147
1215
|
light: {
|
|
1216
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1148
1217
|
background: "#e4d7b0",
|
|
1149
1218
|
foreground: "#5c4b3e",
|
|
1150
1219
|
card: "#e7dbbf",
|
|
@@ -1189,6 +1258,7 @@ var tweakcnPresets = {
|
|
|
1189
1258
|
"shadow-offset-y": "3px"
|
|
1190
1259
|
},
|
|
1191
1260
|
dark: {
|
|
1261
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1192
1262
|
background: "#3a3529",
|
|
1193
1263
|
foreground: "#ede4d4",
|
|
1194
1264
|
card: "#413c33",
|
|
@@ -1229,6 +1299,7 @@ var tweakcnPresets = {
|
|
|
1229
1299
|
createdAt: "2025-04-04",
|
|
1230
1300
|
styles: {
|
|
1231
1301
|
light: {
|
|
1302
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1232
1303
|
background: "#f5f5ff",
|
|
1233
1304
|
foreground: "#2a2a4a",
|
|
1234
1305
|
card: "#ffffff",
|
|
@@ -1273,6 +1344,7 @@ var tweakcnPresets = {
|
|
|
1273
1344
|
"shadow-offset-y": "4px"
|
|
1274
1345
|
},
|
|
1275
1346
|
dark: {
|
|
1347
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1276
1348
|
background: "#0f0f1a",
|
|
1277
1349
|
foreground: "#e2e2f5",
|
|
1278
1350
|
card: "#1a1a2e",
|
|
@@ -1314,6 +1386,7 @@ var tweakcnPresets = {
|
|
|
1314
1386
|
createdAt: "2025-04-09",
|
|
1315
1387
|
styles: {
|
|
1316
1388
|
light: {
|
|
1389
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1317
1390
|
background: "#e8ebed",
|
|
1318
1391
|
foreground: "#333333",
|
|
1319
1392
|
card: "#ffffff",
|
|
@@ -1358,6 +1431,7 @@ var tweakcnPresets = {
|
|
|
1358
1431
|
"shadow-offset-y": "1px"
|
|
1359
1432
|
},
|
|
1360
1433
|
dark: {
|
|
1434
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1361
1435
|
background: "#1c2433",
|
|
1362
1436
|
foreground: "#e5e5e5",
|
|
1363
1437
|
card: "#2a3040",
|
|
@@ -1398,6 +1472,7 @@ var tweakcnPresets = {
|
|
|
1398
1472
|
createdAt: "2025-04-03",
|
|
1399
1473
|
styles: {
|
|
1400
1474
|
light: {
|
|
1475
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1401
1476
|
background: "#fff0f8",
|
|
1402
1477
|
foreground: "#91185c",
|
|
1403
1478
|
card: "#fff7fc",
|
|
@@ -1442,6 +1517,7 @@ var tweakcnPresets = {
|
|
|
1442
1517
|
"shadow-offset-y": "3px"
|
|
1443
1518
|
},
|
|
1444
1519
|
dark: {
|
|
1520
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1445
1521
|
background: "#1a0922",
|
|
1446
1522
|
foreground: "#ffb3ff",
|
|
1447
1523
|
card: "#2a1435",
|
|
@@ -1485,6 +1561,7 @@ var tweakcnPresets = {
|
|
|
1485
1561
|
label: "Nature",
|
|
1486
1562
|
styles: {
|
|
1487
1563
|
light: {
|
|
1564
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1488
1565
|
background: "#f8f5f0",
|
|
1489
1566
|
foreground: "#3e2723",
|
|
1490
1567
|
card: "#f8f5f0",
|
|
@@ -1523,6 +1600,7 @@ var tweakcnPresets = {
|
|
|
1523
1600
|
"font-mono": "Source Code Pro, monospace"
|
|
1524
1601
|
},
|
|
1525
1602
|
dark: {
|
|
1603
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1526
1604
|
background: "#1c2a1f",
|
|
1527
1605
|
foreground: "#f0ebe5",
|
|
1528
1606
|
card: "#2d3a2e",
|
|
@@ -1563,6 +1641,7 @@ var tweakcnPresets = {
|
|
|
1563
1641
|
label: "Bold Tech",
|
|
1564
1642
|
styles: {
|
|
1565
1643
|
light: {
|
|
1644
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1566
1645
|
background: "#ffffff",
|
|
1567
1646
|
foreground: "#312e81",
|
|
1568
1647
|
card: "#ffffff",
|
|
@@ -1607,6 +1686,7 @@ var tweakcnPresets = {
|
|
|
1607
1686
|
"shadow-offset-y": "2px"
|
|
1608
1687
|
},
|
|
1609
1688
|
dark: {
|
|
1689
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1610
1690
|
background: "#0f172a",
|
|
1611
1691
|
foreground: "#e0e7ff",
|
|
1612
1692
|
card: "#1e1b4b",
|
|
@@ -1647,6 +1727,7 @@ var tweakcnPresets = {
|
|
|
1647
1727
|
label: "Elegant Luxury",
|
|
1648
1728
|
styles: {
|
|
1649
1729
|
light: {
|
|
1730
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1650
1731
|
background: "#faf7f5",
|
|
1651
1732
|
foreground: "#1a1a1a",
|
|
1652
1733
|
card: "#faf7f5",
|
|
@@ -1691,6 +1772,7 @@ var tweakcnPresets = {
|
|
|
1691
1772
|
"shadow-offset-y": "1px"
|
|
1692
1773
|
},
|
|
1693
1774
|
dark: {
|
|
1775
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1694
1776
|
background: "#1c1917",
|
|
1695
1777
|
foreground: "#f5f5f4",
|
|
1696
1778
|
card: "#292524",
|
|
@@ -1732,6 +1814,7 @@ var tweakcnPresets = {
|
|
|
1732
1814
|
createdAt: "2025-04-27",
|
|
1733
1815
|
styles: {
|
|
1734
1816
|
light: {
|
|
1817
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1735
1818
|
background: "#ffffff",
|
|
1736
1819
|
foreground: "#262626",
|
|
1737
1820
|
card: "#ffffff",
|
|
@@ -1778,6 +1861,7 @@ var tweakcnPresets = {
|
|
|
1778
1861
|
spacing: "0.25rem"
|
|
1779
1862
|
},
|
|
1780
1863
|
dark: {
|
|
1864
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1781
1865
|
background: "#171717",
|
|
1782
1866
|
foreground: "#e5e5e5",
|
|
1783
1867
|
card: "#262626",
|
|
@@ -1818,6 +1902,7 @@ var tweakcnPresets = {
|
|
|
1818
1902
|
createdAt: "2025-04-27",
|
|
1819
1903
|
styles: {
|
|
1820
1904
|
light: {
|
|
1905
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1821
1906
|
background: "#fcfcfc",
|
|
1822
1907
|
foreground: "#171717",
|
|
1823
1908
|
card: "#fcfcfc",
|
|
@@ -1863,6 +1948,7 @@ var tweakcnPresets = {
|
|
|
1863
1948
|
"letter-spacing": "0.025em"
|
|
1864
1949
|
},
|
|
1865
1950
|
dark: {
|
|
1951
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1866
1952
|
background: "#121212",
|
|
1867
1953
|
foreground: "#e2e8f0",
|
|
1868
1954
|
card: "#171717",
|
|
@@ -1902,6 +1988,7 @@ var tweakcnPresets = {
|
|
|
1902
1988
|
label: "Neo Brutalism",
|
|
1903
1989
|
styles: {
|
|
1904
1990
|
light: {
|
|
1991
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1905
1992
|
background: "#ffffff",
|
|
1906
1993
|
foreground: "#000000",
|
|
1907
1994
|
card: "#ffffff",
|
|
@@ -1945,6 +2032,7 @@ var tweakcnPresets = {
|
|
|
1945
2032
|
"shadow-offset-y": "4px"
|
|
1946
2033
|
},
|
|
1947
2034
|
dark: {
|
|
2035
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
1948
2036
|
background: "#000000",
|
|
1949
2037
|
foreground: "#ffffff",
|
|
1950
2038
|
card: "#333333",
|
|
@@ -1986,6 +2074,7 @@ var tweakcnPresets = {
|
|
|
1986
2074
|
createdAt: "2025-04-12",
|
|
1987
2075
|
styles: {
|
|
1988
2076
|
light: {
|
|
2077
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
1989
2078
|
background: "#FDFBF7",
|
|
1990
2079
|
foreground: "#4A3B33",
|
|
1991
2080
|
card: "#F8F4EE",
|
|
@@ -2030,6 +2119,7 @@ var tweakcnPresets = {
|
|
|
2030
2119
|
"shadow-offset-y": "2px"
|
|
2031
2120
|
},
|
|
2032
2121
|
dark: {
|
|
2122
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2033
2123
|
background: "#1C1917",
|
|
2034
2124
|
foreground: "#F5F5F4",
|
|
2035
2125
|
card: "#292524",
|
|
@@ -2071,6 +2161,7 @@ var tweakcnPresets = {
|
|
|
2071
2161
|
label: "Claymorphism",
|
|
2072
2162
|
styles: {
|
|
2073
2163
|
light: {
|
|
2164
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2074
2165
|
background: "#e7e5e4",
|
|
2075
2166
|
foreground: "#1e293b",
|
|
2076
2167
|
card: "#f5f5f4",
|
|
@@ -2115,6 +2206,7 @@ var tweakcnPresets = {
|
|
|
2115
2206
|
"shadow-offset-y": "2px"
|
|
2116
2207
|
},
|
|
2117
2208
|
dark: {
|
|
2209
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2118
2210
|
background: "#1e1b18",
|
|
2119
2211
|
foreground: "#e2e8f0",
|
|
2120
2212
|
card: "#2c2825",
|
|
@@ -2156,6 +2248,7 @@ var tweakcnPresets = {
|
|
|
2156
2248
|
label: "Cyberpunk",
|
|
2157
2249
|
styles: {
|
|
2158
2250
|
light: {
|
|
2251
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2159
2252
|
background: "#f8f9fa",
|
|
2160
2253
|
foreground: "#0c0c1d",
|
|
2161
2254
|
card: "#ffffff",
|
|
@@ -2239,6 +2332,7 @@ var tweakcnPresets = {
|
|
|
2239
2332
|
label: "Pastel Dreams",
|
|
2240
2333
|
styles: {
|
|
2241
2334
|
light: {
|
|
2335
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2242
2336
|
background: "#f7f3f9",
|
|
2243
2337
|
foreground: "#374151",
|
|
2244
2338
|
card: "#ffffff",
|
|
@@ -2323,6 +2417,7 @@ var tweakcnPresets = {
|
|
|
2323
2417
|
label: "Clean Slate",
|
|
2324
2418
|
styles: {
|
|
2325
2419
|
light: {
|
|
2420
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2326
2421
|
background: "#f8fafc",
|
|
2327
2422
|
foreground: "#1e293b",
|
|
2328
2423
|
card: "#ffffff",
|
|
@@ -2367,6 +2462,7 @@ var tweakcnPresets = {
|
|
|
2367
2462
|
"shadow-offset-y": "4px"
|
|
2368
2463
|
},
|
|
2369
2464
|
dark: {
|
|
2465
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2370
2466
|
background: "#0f172a",
|
|
2371
2467
|
foreground: "#e2e8f0",
|
|
2372
2468
|
card: "#1e293b",
|
|
@@ -2407,6 +2503,7 @@ var tweakcnPresets = {
|
|
|
2407
2503
|
label: "Caffeine",
|
|
2408
2504
|
styles: {
|
|
2409
2505
|
light: {
|
|
2506
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2410
2507
|
background: "#f9f9f9",
|
|
2411
2508
|
foreground: "#202020",
|
|
2412
2509
|
card: "#fcfcfc",
|
|
@@ -2442,6 +2539,7 @@ var tweakcnPresets = {
|
|
|
2442
2539
|
radius: "0.5rem"
|
|
2443
2540
|
},
|
|
2444
2541
|
dark: {
|
|
2542
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2445
2543
|
background: "#111111",
|
|
2446
2544
|
foreground: "#eeeeee",
|
|
2447
2545
|
card: "#191919",
|
|
@@ -2482,6 +2580,7 @@ var tweakcnPresets = {
|
|
|
2482
2580
|
label: "Ocean Breeze",
|
|
2483
2581
|
styles: {
|
|
2484
2582
|
light: {
|
|
2583
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2485
2584
|
background: "#f0f8ff",
|
|
2486
2585
|
foreground: "#374151",
|
|
2487
2586
|
card: "#ffffff",
|
|
@@ -2526,6 +2625,7 @@ var tweakcnPresets = {
|
|
|
2526
2625
|
"shadow-offset-y": "4px"
|
|
2527
2626
|
},
|
|
2528
2627
|
dark: {
|
|
2628
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2529
2629
|
background: "#0f172a",
|
|
2530
2630
|
foreground: "#d1d5db",
|
|
2531
2631
|
card: "#1e293b",
|
|
@@ -2566,6 +2666,7 @@ var tweakcnPresets = {
|
|
|
2566
2666
|
label: "Retro Arcade",
|
|
2567
2667
|
styles: {
|
|
2568
2668
|
light: {
|
|
2669
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2569
2670
|
background: "#fdf6e3",
|
|
2570
2671
|
foreground: "#073642",
|
|
2571
2672
|
card: "#eee8d5",
|
|
@@ -2609,6 +2710,7 @@ var tweakcnPresets = {
|
|
|
2609
2710
|
"shadow-offset-y": "2px"
|
|
2610
2711
|
},
|
|
2611
2712
|
dark: {
|
|
2713
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2612
2714
|
background: "#002b36",
|
|
2613
2715
|
foreground: "#93a1a1",
|
|
2614
2716
|
card: "#073642",
|
|
@@ -2649,6 +2751,7 @@ var tweakcnPresets = {
|
|
|
2649
2751
|
label: "Midnight Bloom",
|
|
2650
2752
|
styles: {
|
|
2651
2753
|
light: {
|
|
2754
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2652
2755
|
background: "#f9f9f9",
|
|
2653
2756
|
foreground: "#333333",
|
|
2654
2757
|
card: "#ffffff",
|
|
@@ -2693,6 +2796,7 @@ var tweakcnPresets = {
|
|
|
2693
2796
|
"shadow-offset-y": "5px"
|
|
2694
2797
|
},
|
|
2695
2798
|
dark: {
|
|
2799
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2696
2800
|
background: "#1a1d23",
|
|
2697
2801
|
foreground: "#e5e5e5",
|
|
2698
2802
|
card: "#2f3436",
|
|
@@ -2733,6 +2837,7 @@ var tweakcnPresets = {
|
|
|
2733
2837
|
label: "Candyland",
|
|
2734
2838
|
styles: {
|
|
2735
2839
|
light: {
|
|
2840
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2736
2841
|
background: "#f7f9fa",
|
|
2737
2842
|
foreground: "#333333",
|
|
2738
2843
|
card: "#ffffff",
|
|
@@ -2770,6 +2875,7 @@ var tweakcnPresets = {
|
|
|
2770
2875
|
"font-mono": "Roboto Mono, monospace"
|
|
2771
2876
|
},
|
|
2772
2877
|
dark: {
|
|
2878
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2773
2879
|
background: "#1a1d23",
|
|
2774
2880
|
foreground: "#e5e5e5",
|
|
2775
2881
|
card: "#2f3436",
|
|
@@ -2810,6 +2916,7 @@ var tweakcnPresets = {
|
|
|
2810
2916
|
label: "Northern Lights",
|
|
2811
2917
|
styles: {
|
|
2812
2918
|
light: {
|
|
2919
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2813
2920
|
background: "#f9f9fa",
|
|
2814
2921
|
foreground: "#333333",
|
|
2815
2922
|
card: "#ffffff",
|
|
@@ -2848,6 +2955,7 @@ var tweakcnPresets = {
|
|
|
2848
2955
|
"font-mono": "JetBrains Mono, monospace"
|
|
2849
2956
|
},
|
|
2850
2957
|
dark: {
|
|
2958
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2851
2959
|
background: "#1a1d23",
|
|
2852
2960
|
foreground: "#e5e5e5",
|
|
2853
2961
|
card: "#2f3436",
|
|
@@ -2888,6 +2996,7 @@ var tweakcnPresets = {
|
|
|
2888
2996
|
label: "Vintage Paper",
|
|
2889
2997
|
styles: {
|
|
2890
2998
|
light: {
|
|
2999
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2891
3000
|
background: "#f5f1e6",
|
|
2892
3001
|
foreground: "#4a3f35",
|
|
2893
3002
|
card: "#fffcf5",
|
|
@@ -2932,6 +3041,7 @@ var tweakcnPresets = {
|
|
|
2932
3041
|
"shadow-offset-y": "3px"
|
|
2933
3042
|
},
|
|
2934
3043
|
dark: {
|
|
3044
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
2935
3045
|
background: "#2d2621",
|
|
2936
3046
|
foreground: "#ece5d8",
|
|
2937
3047
|
card: "#3a322c",
|
|
@@ -2972,6 +3082,7 @@ var tweakcnPresets = {
|
|
|
2972
3082
|
label: "Sunset Horizon",
|
|
2973
3083
|
styles: {
|
|
2974
3084
|
light: {
|
|
3085
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
2975
3086
|
background: "#fff9f5",
|
|
2976
3087
|
foreground: "#3d3436",
|
|
2977
3088
|
card: "#ffffff",
|
|
@@ -3016,6 +3127,7 @@ var tweakcnPresets = {
|
|
|
3016
3127
|
"shadow-offset-y": "6px"
|
|
3017
3128
|
},
|
|
3018
3129
|
dark: {
|
|
3130
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3019
3131
|
background: "#2a2024",
|
|
3020
3132
|
foreground: "#f2e9e4",
|
|
3021
3133
|
card: "#392f35",
|
|
@@ -3057,6 +3169,7 @@ var tweakcnPresets = {
|
|
|
3057
3169
|
createdAt: "2025-04-16",
|
|
3058
3170
|
styles: {
|
|
3059
3171
|
light: {
|
|
3172
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3060
3173
|
background: "#f5f7fa",
|
|
3061
3174
|
foreground: "#1a2238",
|
|
3062
3175
|
card: "#e3eaf2",
|
|
@@ -3093,6 +3206,7 @@ var tweakcnPresets = {
|
|
|
3093
3206
|
radius: "0.5rem"
|
|
3094
3207
|
},
|
|
3095
3208
|
dark: {
|
|
3209
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3096
3210
|
background: "#181a24",
|
|
3097
3211
|
foreground: "#e6eaf3",
|
|
3098
3212
|
card: "#23243a",
|
|
@@ -3133,6 +3247,7 @@ var tweakcnPresets = {
|
|
|
3133
3247
|
label: "Claude",
|
|
3134
3248
|
styles: {
|
|
3135
3249
|
light: {
|
|
3250
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3136
3251
|
background: "#faf9f5",
|
|
3137
3252
|
foreground: "#3d3929",
|
|
3138
3253
|
card: "#faf9f5",
|
|
@@ -3168,6 +3283,7 @@ var tweakcnPresets = {
|
|
|
3168
3283
|
radius: "0.5rem"
|
|
3169
3284
|
},
|
|
3170
3285
|
dark: {
|
|
3286
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3171
3287
|
background: "#262624",
|
|
3172
3288
|
foreground: "#c3c0b6",
|
|
3173
3289
|
card: "#262624",
|
|
@@ -3208,6 +3324,7 @@ var tweakcnPresets = {
|
|
|
3208
3324
|
createdAt: "2025-04-13",
|
|
3209
3325
|
styles: {
|
|
3210
3326
|
light: {
|
|
3327
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3211
3328
|
background: "oklch(0.99 0 0)",
|
|
3212
3329
|
foreground: "oklch(0 0 0)",
|
|
3213
3330
|
card: "oklch(1.00 0 0)",
|
|
@@ -3252,6 +3369,7 @@ var tweakcnPresets = {
|
|
|
3252
3369
|
"shadow-offset-y": "1px"
|
|
3253
3370
|
},
|
|
3254
3371
|
dark: {
|
|
3372
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3255
3373
|
background: "oklch(0 0 0)",
|
|
3256
3374
|
foreground: "oklch(1.00 0 0)",
|
|
3257
3375
|
card: "oklch(0.14 0 0)",
|
|
@@ -3295,6 +3413,7 @@ var tweakcnPresets = {
|
|
|
3295
3413
|
createdAt: "2025-04-20",
|
|
3296
3414
|
styles: {
|
|
3297
3415
|
light: {
|
|
3416
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3298
3417
|
background: "#ffffff",
|
|
3299
3418
|
foreground: "#0a0a0a",
|
|
3300
3419
|
card: "#ffffff",
|
|
@@ -3339,6 +3458,7 @@ var tweakcnPresets = {
|
|
|
3339
3458
|
"shadow-offset-y": "1px"
|
|
3340
3459
|
},
|
|
3341
3460
|
dark: {
|
|
3461
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3342
3462
|
background: "#0a0a0a",
|
|
3343
3463
|
foreground: "#fafafa",
|
|
3344
3464
|
card: "#191919",
|
|
@@ -3379,6 +3499,7 @@ var tweakcnPresets = {
|
|
|
3379
3499
|
createdAt: "2025-07-08",
|
|
3380
3500
|
styles: {
|
|
3381
3501
|
light: {
|
|
3502
|
+
...DEFAULT_ACCENT_COLORS.LIGHT,
|
|
3382
3503
|
background: "#f7f9f3",
|
|
3383
3504
|
foreground: "#000000",
|
|
3384
3505
|
card: "#ffffff",
|
|
@@ -3425,6 +3546,7 @@ var tweakcnPresets = {
|
|
|
3425
3546
|
spacing: "0.25rem"
|
|
3426
3547
|
},
|
|
3427
3548
|
dark: {
|
|
3549
|
+
...DEFAULT_ACCENT_COLORS.DARK,
|
|
3428
3550
|
background: "#000000",
|
|
3429
3551
|
foreground: "#ffffff",
|
|
3430
3552
|
card: "#1a212b",
|
|
@@ -3484,9 +3606,7 @@ function getPresetLabels() {
|
|
|
3484
3606
|
}
|
|
3485
3607
|
function searchPresets(query) {
|
|
3486
3608
|
const lowerQuery = query.toLowerCase();
|
|
3487
|
-
return Object.entries(tweakcnPresets).filter(
|
|
3488
|
-
([id, preset]) => preset.label.toLowerCase().includes(lowerQuery) || id.toLowerCase().includes(lowerQuery)
|
|
3489
|
-
).map(([id, preset]) => ({ id, preset }));
|
|
3609
|
+
return Object.entries(tweakcnPresets).filter(([id, preset]) => preset.label.toLowerCase().includes(lowerQuery) || id.toLowerCase().includes(lowerQuery)).map(([id, preset]) => ({ id, preset }));
|
|
3490
3610
|
}
|
|
3491
3611
|
function getPresetsCount() {
|
|
3492
3612
|
return Object.keys(tweakcnPresets).length;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fakhrirafiki/theme-engine",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Elegant theming system with smooth transitions, custom presets, semantic accent colors, and complete shadcn/ui support for modern React applications",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
"build:css": "cp -r src/styles dist/",
|
|
28
28
|
"build:full": "npm run build && npm run build:css",
|
|
29
29
|
"type-check": "tsc --noEmit",
|
|
30
|
-
"prepublishOnly": "npm run build:full"
|
|
30
|
+
"prepublishOnly": "npm run build:full",
|
|
31
|
+
"publish-patch": "npm version patch && npm publish",
|
|
32
|
+
"publish-minor": "npm version minor && npm publish",
|
|
33
|
+
"publish-major": "npm version major && npm publish"
|
|
31
34
|
},
|
|
32
35
|
"repository": {
|
|
33
36
|
"type": "git",
|