@macroui/macroui 4.0.0 → 4.0.2

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.
Files changed (123) hide show
  1. package/dist/base.js +1 -0
  2. package/dist/full.css +62910 -0
  3. package/dist/index.d.ts +122 -0
  4. package/dist/index.js +149 -0
  5. package/dist/styled.css +5192 -0
  6. package/dist/styled.js +1 -0
  7. package/dist/themes.css +2118 -0
  8. package/dist/unstyled.css +1330 -0
  9. package/dist/unstyled.js +1 -0
  10. package/dist/utilities-styled.js +1 -0
  11. package/dist/utilities-unstyled.js +1 -0
  12. package/dist/utilities.js +1 -0
  13. package/package.json +23 -24
  14. package/src/base/properties.css +5 -0
  15. package/src/base/reset.css +130 -0
  16. package/src/base/rootcolor.css +9 -0
  17. package/src/base/rootscrollgutter.css +21 -0
  18. package/src/base/rootscrolllock.css +4 -0
  19. package/src/base/scrollbar.css +3 -0
  20. package/src/base/svg.css +3 -0
  21. package/src/components/alert.css +126 -0
  22. package/src/components/avatar.css +60 -0
  23. package/src/components/badge.css +151 -0
  24. package/src/components/breadcrumbs.css +40 -0
  25. package/src/components/button.css +362 -0
  26. package/src/components/calendar.css +549 -0
  27. package/src/components/card.css +203 -0
  28. package/src/components/carousel.css +59 -0
  29. package/src/components/chat.css +157 -0
  30. package/src/components/checkbox.css +174 -0
  31. package/src/components/collapse.css +302 -0
  32. package/src/components/countdown.css +56 -0
  33. package/src/components/diff.css +93 -0
  34. package/src/components/divider.css +148 -0
  35. package/src/components/dock.css +123 -0
  36. package/src/components/drawer.css +166 -0
  37. package/src/components/dropdown.css +247 -0
  38. package/src/components/fab.css +139 -0
  39. package/src/components/fieldset.css +23 -0
  40. package/src/components/fileinput.css +265 -0
  41. package/src/components/filter.css +42 -0
  42. package/src/components/footer.css +45 -0
  43. package/src/components/hero.css +21 -0
  44. package/src/components/hover3d.css +128 -0
  45. package/src/components/hovergallery.css +87 -0
  46. package/src/components/indicator.css +76 -0
  47. package/src/components/input.css +263 -0
  48. package/src/components/kbd.css +49 -0
  49. package/src/components/label.css +101 -0
  50. package/src/components/link.css +116 -0
  51. package/src/components/list.css +58 -0
  52. package/src/components/loading.css +76 -0
  53. package/src/components/mask.css +108 -0
  54. package/src/components/menu.css +298 -0
  55. package/src/components/mockup.css +150 -0
  56. package/src/components/modal.css +182 -0
  57. package/src/components/navbar.css +36 -0
  58. package/src/components/progress.css +108 -0
  59. package/src/components/radialprogress.css +39 -0
  60. package/src/components/radio.css +158 -0
  61. package/src/components/range.css +186 -0
  62. package/src/components/rating.css +114 -0
  63. package/src/components/select.css +284 -0
  64. package/src/components/skeleton.css +41 -0
  65. package/src/components/stack.css +80 -0
  66. package/src/components/stat.css +73 -0
  67. package/src/components/status.css +92 -0
  68. package/src/components/steps.css +168 -0
  69. package/src/components/swap.css +94 -0
  70. package/src/components/tab.css +557 -0
  71. package/src/components/table.css +126 -0
  72. package/src/components/textarea.css +179 -0
  73. package/src/components/textrotate.css +71 -0
  74. package/src/components/timeline.css +250 -0
  75. package/src/components/toast.css +68 -0
  76. package/src/components/toggle.css +239 -0
  77. package/src/components/tooltip.css +203 -0
  78. package/src/components/validator.css +47 -0
  79. package/src/themes/abyss.css +29 -0
  80. package/src/themes/acid.css +29 -0
  81. package/src/themes/aqua.css +29 -0
  82. package/src/themes/autumn.css +29 -0
  83. package/src/themes/black.css +29 -0
  84. package/src/themes/bumblebee.css +29 -0
  85. package/src/themes/business.css +29 -0
  86. package/src/themes/caramellatte.css +29 -0
  87. package/src/themes/cmyk.css +29 -0
  88. package/src/themes/coffee.css +29 -0
  89. package/src/themes/corporate.css +29 -0
  90. package/src/themes/cupcake.css +29 -0
  91. package/src/themes/cyberpunk.css +29 -0
  92. package/src/themes/dark.css +29 -0
  93. package/src/themes/dim.css +29 -0
  94. package/src/themes/dracula.css +29 -0
  95. package/src/themes/emerald.css +29 -0
  96. package/src/themes/fantasy.css +29 -0
  97. package/src/themes/forest.css +29 -0
  98. package/src/themes/garden.css +29 -0
  99. package/src/themes/halloween.css +29 -0
  100. package/src/themes/lemonade.css +29 -0
  101. package/src/themes/light.css +29 -0
  102. package/src/themes/lofi.css +29 -0
  103. package/src/themes/luxury.css +29 -0
  104. package/src/themes/night.css +29 -0
  105. package/src/themes/nord.css +29 -0
  106. package/src/themes/pastel.css +29 -0
  107. package/src/themes/retro.css +29 -0
  108. package/src/themes/silk.css +29 -0
  109. package/src/themes/sunset.css +29 -0
  110. package/src/themes/synthwave.css +29 -0
  111. package/src/themes/valentine.css +29 -0
  112. package/src/themes/winter.css +29 -0
  113. package/src/themes/wireframe.css +29 -0
  114. package/src/utilities/glass.css +20 -0
  115. package/src/utilities/join.css +207 -0
  116. package/src/utilities/radius.css +119 -0
  117. package/src/utilities/typography.css +31 -0
  118. package/functions/addPrefix.js +0 -185
  119. package/functions/plugin.js +0 -11
  120. package/functions/pluginOptionsHandler.js +0 -97
  121. package/functions/themeOrder.js +0 -37
  122. package/functions/variables.js +0 -29
  123. package/index.js +0 -61
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(98% 0.016 73.684);
3
+ --color-base-200: oklch(95% 0.038 75.164);
4
+ --color-base-300: oklch(90% 0.076 70.697);
5
+ --color-base-content: oklch(40% 0.123 38.172);
6
+ --color-primary: oklch(0% 0 0);
7
+ --color-primary-content: oklch(100% 0 0);
8
+ --color-secondary: oklch(22.45% 0.075 37.85);
9
+ --color-secondary-content: oklch(90% 0.076 70.697);
10
+ --color-accent: oklch(46.44% 0.111 37.85);
11
+ --color-accent-content: oklch(90% 0.076 70.697);
12
+ --color-neutral: oklch(55% 0.195 38.402);
13
+ --color-neutral-content: oklch(98% 0.016 73.684);
14
+ --color-info: oklch(42% 0.199 265.638);
15
+ --color-info-content: oklch(90% 0.076 70.697);
16
+ --color-success: oklch(43% 0.095 166.913);
17
+ --color-success-content: oklch(90% 0.076 70.697);
18
+ --color-warning: oklch(82% 0.189 84.429);
19
+ --color-warning-content: oklch(41% 0.112 45.904);
20
+ --color-error: oklch(70% 0.191 22.216);
21
+ --color-error-content: oklch(39% 0.141 25.723);
22
+ --radius-selector: 2rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 2px;
28
+ --depth: 1;
29
+ --noise: 1;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(95% 0 0);
4
+ --color-base-300: oklch(90% 0 0);
5
+ --color-base-content: oklch(20% 0 0);
6
+ --color-primary: oklch(71.772% 0.133 239.443);
7
+ --color-primary-content: oklch(14.354% 0.026 239.443);
8
+ --color-secondary: oklch(64.476% 0.202 359.339);
9
+ --color-secondary-content: oklch(12.895% 0.04 359.339);
10
+ --color-accent: oklch(94.228% 0.189 105.306);
11
+ --color-accent-content: oklch(18.845% 0.037 105.306);
12
+ --color-neutral: oklch(21.778% 0 0);
13
+ --color-neutral-content: oklch(84.355% 0 0);
14
+ --color-info: oklch(68.475% 0.094 217.284);
15
+ --color-info-content: oklch(13.695% 0.018 217.284);
16
+ --color-success: oklch(46.949% 0.162 321.406);
17
+ --color-success-content: oklch(89.389% 0.032 321.406);
18
+ --color-warning: oklch(71.236% 0.159 52.023);
19
+ --color-warning-content: oklch(14.247% 0.031 52.023);
20
+ --color-error: oklch(62.013% 0.208 28.717);
21
+ --color-error-content: oklch(12.402% 0.041 28.717);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(24% 0.023 329.708);
3
+ --color-base-200: oklch(21% 0.021 329.708);
4
+ --color-base-300: oklch(16% 0.019 329.708);
5
+ --color-base-content: oklch(72.354% 0.092 79.129);
6
+ --color-primary: oklch(71.996% 0.123 62.756);
7
+ --color-primary-content: oklch(14.399% 0.024 62.756);
8
+ --color-secondary: oklch(34.465% 0.029 199.194);
9
+ --color-secondary-content: oklch(86.893% 0.005 199.194);
10
+ --color-accent: oklch(42.621% 0.074 224.389);
11
+ --color-accent-content: oklch(88.524% 0.014 224.389);
12
+ --color-neutral: oklch(16.51% 0.015 326.261);
13
+ --color-neutral-content: oklch(83.302% 0.003 326.261);
14
+ --color-info: oklch(79.49% 0.063 184.558);
15
+ --color-info-content: oklch(15.898% 0.012 184.558);
16
+ --color-success: oklch(74.722% 0.072 131.116);
17
+ --color-success-content: oklch(14.944% 0.014 131.116);
18
+ --color-warning: oklch(88.15% 0.14 87.722);
19
+ --color-warning-content: oklch(17.63% 0.028 87.722);
20
+ --color-error: oklch(77.318% 0.128 31.871);
21
+ --color-error-content: oklch(15.463% 0.025 31.871);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(93% 0 0);
4
+ --color-base-300: oklch(86% 0 0);
5
+ --color-base-content: oklch(22.389% 0.031 278.072);
6
+ --color-primary: oklch(58% 0.158 241.966);
7
+ --color-primary-content: oklch(100% 0 0);
8
+ --color-secondary: oklch(55% 0.046 257.417);
9
+ --color-secondary-content: oklch(100% 0 0);
10
+ --color-accent: oklch(60% 0.118 184.704);
11
+ --color-accent-content: oklch(100% 0 0);
12
+ --color-neutral: oklch(0% 0 0);
13
+ --color-neutral-content: oklch(100% 0 0);
14
+ --color-info: oklch(60% 0.126 221.723);
15
+ --color-info-content: oklch(100% 0 0);
16
+ --color-success: oklch(62% 0.194 149.214);
17
+ --color-success-content: oklch(100% 0 0);
18
+ --color-warning: oklch(85% 0.199 91.936);
19
+ --color-warning-content: oklch(0% 0 0);
20
+ --color-error: oklch(70% 0.191 22.216);
21
+ --color-error-content: oklch(0% 0 0);
22
+ --radius-selector: 0.25rem;
23
+ --radius-field: 0.25rem;
24
+ --radius-box: 0.25rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(97.788% 0.004 56.375);
3
+ --color-base-200: oklch(93.982% 0.007 61.449);
4
+ --color-base-300: oklch(91.586% 0.006 53.44);
5
+ --color-base-content: oklch(23.574% 0.066 313.189);
6
+ --color-primary: oklch(85% 0.138 181.071);
7
+ --color-primary-content: oklch(43% 0.078 188.216);
8
+ --color-secondary: oklch(89% 0.061 343.231);
9
+ --color-secondary-content: oklch(45% 0.187 3.815);
10
+ --color-accent: oklch(90% 0.076 70.697);
11
+ --color-accent-content: oklch(47% 0.157 37.304);
12
+ --color-neutral: oklch(27% 0.006 286.033);
13
+ --color-neutral-content: oklch(92% 0.004 286.32);
14
+ --color-info: oklch(68% 0.169 237.323);
15
+ --color-info-content: oklch(29% 0.066 243.157);
16
+ --color-success: oklch(69% 0.17 162.48);
17
+ --color-success-content: oklch(26% 0.051 172.552);
18
+ --color-warning: oklch(79% 0.184 86.047);
19
+ --color-warning-content: oklch(28% 0.066 53.813);
20
+ --color-error: oklch(64% 0.246 16.439);
21
+ --color-error-content: oklch(27% 0.105 12.094);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 2rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 2px;
28
+ --depth: 1;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(94.51% 0.179 104.32);
3
+ --color-base-200: oklch(91.51% 0.179 104.32);
4
+ --color-base-300: oklch(85.51% 0.179 104.32);
5
+ --color-base-content: oklch(0% 0 0);
6
+ --color-primary: oklch(74.22% 0.209 6.35);
7
+ --color-primary-content: oklch(14.844% 0.041 6.35);
8
+ --color-secondary: oklch(83.33% 0.184 204.72);
9
+ --color-secondary-content: oklch(16.666% 0.036 204.72);
10
+ --color-accent: oklch(71.86% 0.217 310.43);
11
+ --color-accent-content: oklch(14.372% 0.043 310.43);
12
+ --color-neutral: oklch(23.04% 0.065 269.31);
13
+ --color-neutral-content: oklch(94.51% 0.179 104.32);
14
+ --color-info: oklch(72.06% 0.191 231.6);
15
+ --color-info-content: oklch(0% 0 0);
16
+ --color-success: oklch(64.8% 0.15 160);
17
+ --color-success-content: oklch(0% 0 0);
18
+ --color-warning: oklch(84.71% 0.199 83.87);
19
+ --color-warning-content: oklch(0% 0 0);
20
+ --color-error: oklch(71.76% 0.221 22.18);
21
+ --color-error-content: oklch(0% 0 0);
22
+ --radius-selector: 0rem;
23
+ --radius-field: 0rem;
24
+ --radius-box: 0rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(25.33% 0.016 252.42);
3
+ --color-base-200: oklch(23.26% 0.014 253.1);
4
+ --color-base-300: oklch(21.15% 0.012 254.09);
5
+ --color-base-content: oklch(97.807% 0.029 256.847);
6
+ --color-primary: oklch(58% 0.233 277.117);
7
+ --color-primary-content: oklch(96% 0.018 272.314);
8
+ --color-secondary: oklch(65% 0.241 354.308);
9
+ --color-secondary-content: oklch(94% 0.028 342.258);
10
+ --color-accent: oklch(77% 0.152 181.912);
11
+ --color-accent-content: oklch(38% 0.063 188.416);
12
+ --color-neutral: oklch(14% 0.005 285.823);
13
+ --color-neutral-content: oklch(92% 0.004 286.32);
14
+ --color-info: oklch(74% 0.16 232.661);
15
+ --color-info-content: oklch(29% 0.066 243.157);
16
+ --color-success: oklch(76% 0.177 163.223);
17
+ --color-success-content: oklch(37% 0.077 168.94);
18
+ --color-warning: oklch(82% 0.189 84.429);
19
+ --color-warning-content: oklch(41% 0.112 45.904);
20
+ --color-error: oklch(71% 0.194 13.428);
21
+ --color-error-content: oklch(27% 0.105 12.094);
22
+ --radius-selector: 0.5rem;
23
+ --radius-field: 0.25rem;
24
+ --radius-box: 0.5rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 1;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(30.857% 0.023 264.149);
3
+ --color-base-200: oklch(28.036% 0.019 264.182);
4
+ --color-base-300: oklch(26.346% 0.018 262.177);
5
+ --color-base-content: oklch(82.901% 0.031 222.959);
6
+ --color-primary: oklch(86.133% 0.141 139.549);
7
+ --color-primary-content: oklch(17.226% 0.028 139.549);
8
+ --color-secondary: oklch(73.375% 0.165 35.353);
9
+ --color-secondary-content: oklch(14.675% 0.033 35.353);
10
+ --color-accent: oklch(74.229% 0.133 311.379);
11
+ --color-accent-content: oklch(14.845% 0.026 311.379);
12
+ --color-neutral: oklch(24.731% 0.02 264.094);
13
+ --color-neutral-content: oklch(82.901% 0.031 222.959);
14
+ --color-info: oklch(86.078% 0.142 206.182);
15
+ --color-info-content: oklch(17.215% 0.028 206.182);
16
+ --color-success: oklch(86.171% 0.142 166.534);
17
+ --color-success-content: oklch(17.234% 0.028 166.534);
18
+ --color-warning: oklch(86.163% 0.142 94.818);
19
+ --color-warning-content: oklch(17.232% 0.028 94.818);
20
+ --color-error: oklch(82.418% 0.099 33.756);
21
+ --color-error-content: oklch(16.483% 0.019 33.756);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(28.822% 0.022 277.508);
3
+ --color-base-200: oklch(26.805% 0.02 277.508);
4
+ --color-base-300: oklch(24.787% 0.019 277.508);
5
+ --color-base-content: oklch(97.747% 0.007 106.545);
6
+ --color-primary: oklch(75.461% 0.183 346.812);
7
+ --color-primary-content: oklch(15.092% 0.036 346.812);
8
+ --color-secondary: oklch(74.202% 0.148 301.883);
9
+ --color-secondary-content: oklch(14.84% 0.029 301.883);
10
+ --color-accent: oklch(83.392% 0.124 66.558);
11
+ --color-accent-content: oklch(16.678% 0.024 66.558);
12
+ --color-neutral: oklch(39.445% 0.032 275.524);
13
+ --color-neutral-content: oklch(87.889% 0.006 275.524);
14
+ --color-info: oklch(88.263% 0.093 212.846);
15
+ --color-info-content: oklch(17.652% 0.018 212.846);
16
+ --color-success: oklch(87.099% 0.219 148.024);
17
+ --color-success-content: oklch(17.419% 0.043 148.024);
18
+ --color-warning: oklch(95.533% 0.134 112.757);
19
+ --color-warning-content: oklch(19.106% 0.026 112.757);
20
+ --color-error: oklch(68.22% 0.206 24.43);
21
+ --color-error-content: oklch(13.644% 0.041 24.43);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(93% 0 0);
4
+ --color-base-300: oklch(86% 0 0);
5
+ --color-base-content: oklch(35.519% 0.032 262.988);
6
+ --color-primary: oklch(76.662% 0.135 153.45);
7
+ --color-primary-content: oklch(33.387% 0.04 162.24);
8
+ --color-secondary: oklch(61.302% 0.202 261.294);
9
+ --color-secondary-content: oklch(100% 0 0);
10
+ --color-accent: oklch(72.772% 0.149 33.2);
11
+ --color-accent-content: oklch(0% 0 0);
12
+ --color-neutral: oklch(35.519% 0.032 262.988);
13
+ --color-neutral-content: oklch(98.462% 0.001 247.838);
14
+ --color-info: oklch(72.06% 0.191 231.6);
15
+ --color-info-content: oklch(0% 0 0);
16
+ --color-success: oklch(64.8% 0.15 160);
17
+ --color-success-content: oklch(0% 0 0);
18
+ --color-warning: oklch(84.71% 0.199 83.87);
19
+ --color-warning-content: oklch(0% 0 0);
20
+ --color-error: oklch(71.76% 0.221 22.18);
21
+ --color-error-content: oklch(0% 0 0);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(93% 0 0);
4
+ --color-base-300: oklch(86% 0 0);
5
+ --color-base-content: oklch(27.807% 0.029 256.847);
6
+ --color-primary: oklch(37.45% 0.189 325.02);
7
+ --color-primary-content: oklch(87.49% 0.037 325.02);
8
+ --color-secondary: oklch(53.92% 0.162 241.36);
9
+ --color-secondary-content: oklch(90.784% 0.032 241.36);
10
+ --color-accent: oklch(75.98% 0.204 56.72);
11
+ --color-accent-content: oklch(15.196% 0.04 56.72);
12
+ --color-neutral: oklch(27.807% 0.029 256.847);
13
+ --color-neutral-content: oklch(85.561% 0.005 256.847);
14
+ --color-info: oklch(72.06% 0.191 231.6);
15
+ --color-info-content: oklch(0% 0 0);
16
+ --color-success: oklch(64.8% 0.15 160);
17
+ --color-success-content: oklch(0% 0 0);
18
+ --color-warning: oklch(84.71% 0.199 83.87);
19
+ --color-warning-content: oklch(0% 0 0);
20
+ --color-error: oklch(71.76% 0.221 22.18);
21
+ --color-error-content: oklch(0% 0 0);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 1;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(20.84% 0.008 17.911);
3
+ --color-base-200: oklch(18.522% 0.007 17.911);
4
+ --color-base-300: oklch(16.203% 0.007 17.911);
5
+ --color-base-content: oklch(83.768% 0.001 17.911);
6
+ --color-primary: oklch(68.628% 0.185 148.958);
7
+ --color-primary-content: oklch(0% 0 0);
8
+ --color-secondary: oklch(69.776% 0.135 168.327);
9
+ --color-secondary-content: oklch(13.955% 0.027 168.327);
10
+ --color-accent: oklch(70.628% 0.119 185.713);
11
+ --color-accent-content: oklch(14.125% 0.023 185.713);
12
+ --color-neutral: oklch(30.698% 0.039 171.364);
13
+ --color-neutral-content: oklch(86.139% 0.007 171.364);
14
+ --color-info: oklch(72.06% 0.191 231.6);
15
+ --color-info-content: oklch(0% 0 0);
16
+ --color-success: oklch(64.8% 0.15 160);
17
+ --color-success-content: oklch(0% 0 0);
18
+ --color-warning: oklch(84.71% 0.199 83.87);
19
+ --color-warning-content: oklch(0% 0 0);
20
+ --color-error: oklch(71.76% 0.221 22.18);
21
+ --color-error-content: oklch(0% 0 0);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 2rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(92.951% 0.002 17.197);
3
+ --color-base-200: oklch(86.445% 0.002 17.197);
4
+ --color-base-300: oklch(79.938% 0.001 17.197);
5
+ --color-base-content: oklch(16.961% 0.001 17.32);
6
+ --color-primary: oklch(62.45% 0.278 3.836);
7
+ --color-primary-content: oklch(100% 0 0);
8
+ --color-secondary: oklch(48.495% 0.11 355.095);
9
+ --color-secondary-content: oklch(89.699% 0.022 355.095);
10
+ --color-accent: oklch(56.273% 0.054 154.39);
11
+ --color-accent-content: oklch(100% 0 0);
12
+ --color-neutral: oklch(24.155% 0.049 89.07);
13
+ --color-neutral-content: oklch(92.951% 0.002 17.197);
14
+ --color-info: oklch(72.06% 0.191 231.6);
15
+ --color-info-content: oklch(0% 0 0);
16
+ --color-success: oklch(64.8% 0.15 160);
17
+ --color-success-content: oklch(0% 0 0);
18
+ --color-warning: oklch(84.71% 0.199 83.87);
19
+ --color-warning-content: oklch(0% 0 0);
20
+ --color-error: oklch(71.76% 0.221 22.18);
21
+ --color-error-content: oklch(0% 0 0);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(21% 0.006 56.043);
3
+ --color-base-200: oklch(14% 0.004 49.25);
4
+ --color-base-300: oklch(0% 0 0);
5
+ --color-base-content: oklch(84.955% 0 0);
6
+ --color-primary: oklch(77.48% 0.204 60.62);
7
+ --color-primary-content: oklch(19.693% 0.004 196.779);
8
+ --color-secondary: oklch(45.98% 0.248 305.03);
9
+ --color-secondary-content: oklch(89.196% 0.049 305.03);
10
+ --color-accent: oklch(64.8% 0.223 136.073);
11
+ --color-accent-content: oklch(0% 0 0);
12
+ --color-neutral: oklch(24.371% 0.046 65.681);
13
+ --color-neutral-content: oklch(84.874% 0.009 65.681);
14
+ --color-info: oklch(54.615% 0.215 262.88);
15
+ --color-info-content: oklch(90.923% 0.043 262.88);
16
+ --color-success: oklch(62.705% 0.169 149.213);
17
+ --color-success-content: oklch(12.541% 0.033 149.213);
18
+ --color-warning: oklch(66.584% 0.157 58.318);
19
+ --color-warning-content: oklch(13.316% 0.031 58.318);
20
+ --color-error: oklch(65.72% 0.199 27.33);
21
+ --color-error-content: oklch(13.144% 0.039 27.33);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 1;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(98.71% 0.02 123.72);
3
+ --color-base-200: oklch(91.8% 0.018 123.72);
4
+ --color-base-300: oklch(84.89% 0.017 123.72);
5
+ --color-base-content: oklch(19.742% 0.004 123.72);
6
+ --color-primary: oklch(58.92% 0.199 134.6);
7
+ --color-primary-content: oklch(11.784% 0.039 134.6);
8
+ --color-secondary: oklch(77.75% 0.196 111.09);
9
+ --color-secondary-content: oklch(15.55% 0.039 111.09);
10
+ --color-accent: oklch(85.39% 0.201 100.73);
11
+ --color-accent-content: oklch(17.078% 0.04 100.73);
12
+ --color-neutral: oklch(30.98% 0.075 108.6);
13
+ --color-neutral-content: oklch(86.196% 0.015 108.6);
14
+ --color-info: oklch(86.19% 0.047 224.14);
15
+ --color-info-content: oklch(17.238% 0.009 224.14);
16
+ --color-success: oklch(86.19% 0.047 157.85);
17
+ --color-success-content: oklch(17.238% 0.009 157.85);
18
+ --color-warning: oklch(86.19% 0.047 102.15);
19
+ --color-warning-content: oklch(17.238% 0.009 102.15);
20
+ --color-error: oklch(86.19% 0.047 25.85);
21
+ --color-error-content: oklch(17.238% 0.009 25.85);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(98% 0 0);
4
+ --color-base-300: oklch(95% 0 0);
5
+ --color-base-content: oklch(21% 0.006 285.885);
6
+ --color-primary: oklch(45% 0.24 277.023);
7
+ --color-primary-content: oklch(93% 0.034 272.788);
8
+ --color-secondary: oklch(65% 0.241 354.308);
9
+ --color-secondary-content: oklch(94% 0.028 342.258);
10
+ --color-accent: oklch(77% 0.152 181.912);
11
+ --color-accent-content: oklch(38% 0.063 188.416);
12
+ --color-neutral: oklch(14% 0.005 285.823);
13
+ --color-neutral-content: oklch(92% 0.004 286.32);
14
+ --color-info: oklch(74% 0.16 232.661);
15
+ --color-info-content: oklch(29% 0.066 243.157);
16
+ --color-success: oklch(76% 0.177 163.223);
17
+ --color-success-content: oklch(37% 0.077 168.94);
18
+ --color-warning: oklch(82% 0.189 84.429);
19
+ --color-warning-content: oklch(41% 0.112 45.904);
20
+ --color-error: oklch(71% 0.194 13.428);
21
+ --color-error-content: oklch(27% 0.105 12.094);
22
+ --radius-selector: 0.5rem;
23
+ --radius-field: 0.25rem;
24
+ --radius-box: 0.5rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 1;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(97% 0 0);
4
+ --color-base-300: oklch(94% 0 0);
5
+ --color-base-content: oklch(0% 0 0);
6
+ --color-primary: oklch(15.906% 0 0);
7
+ --color-primary-content: oklch(100% 0 0);
8
+ --color-secondary: oklch(21.455% 0.001 17.278);
9
+ --color-secondary-content: oklch(100% 0 0);
10
+ --color-accent: oklch(26.861% 0 0);
11
+ --color-accent-content: oklch(100% 0 0);
12
+ --color-neutral: oklch(0% 0 0);
13
+ --color-neutral-content: oklch(100% 0 0);
14
+ --color-info: oklch(79.54% 0.103 205.9);
15
+ --color-info-content: oklch(15.908% 0.02 205.9);
16
+ --color-success: oklch(90.13% 0.153 164.14);
17
+ --color-success-content: oklch(18.026% 0.03 164.14);
18
+ --color-warning: oklch(88.37% 0.135 79.94);
19
+ --color-warning-content: oklch(17.674% 0.027 79.94);
20
+ --color-error: oklch(78.66% 0.15 28.47);
21
+ --color-error-content: oklch(15.732% 0.03 28.47);
22
+ --radius-selector: 2rem;
23
+ --radius-field: 0.25rem;
24
+ --radius-box: 0.5rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(14.076% 0.004 285.822);
3
+ --color-base-200: oklch(20.219% 0.004 308.229);
4
+ --color-base-300: oklch(23.219% 0.004 308.229);
5
+ --color-base-content: oklch(75.687% 0.123 76.89);
6
+ --color-primary: oklch(100% 0 0);
7
+ --color-primary-content: oklch(20% 0 0);
8
+ --color-secondary: oklch(27.581% 0.064 261.069);
9
+ --color-secondary-content: oklch(85.516% 0.012 261.069);
10
+ --color-accent: oklch(36.674% 0.051 338.825);
11
+ --color-accent-content: oklch(87.334% 0.01 338.825);
12
+ --color-neutral: oklch(24.27% 0.057 59.825);
13
+ --color-neutral-content: oklch(93.203% 0.089 90.861);
14
+ --color-info: oklch(79.061% 0.121 237.133);
15
+ --color-info-content: oklch(15.812% 0.024 237.133);
16
+ --color-success: oklch(78.119% 0.192 132.154);
17
+ --color-success-content: oklch(15.623% 0.038 132.154);
18
+ --color-warning: oklch(86.127% 0.136 102.891);
19
+ --color-warning-content: oklch(17.225% 0.027 102.891);
20
+ --color-error: oklch(71.753% 0.176 22.568);
21
+ --color-error-content: oklch(14.35% 0.035 22.568);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 1;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: dark;
2
+ --color-base-100: oklch(20.768% 0.039 265.754);
3
+ --color-base-200: oklch(19.314% 0.037 265.754);
4
+ --color-base-300: oklch(17.86% 0.034 265.754);
5
+ --color-base-content: oklch(84.153% 0.007 265.754);
6
+ --color-primary: oklch(75.351% 0.138 232.661);
7
+ --color-primary-content: oklch(15.07% 0.027 232.661);
8
+ --color-secondary: oklch(68.011% 0.158 276.934);
9
+ --color-secondary-content: oklch(13.602% 0.031 276.934);
10
+ --color-accent: oklch(72.36% 0.176 350.048);
11
+ --color-accent-content: oklch(14.472% 0.035 350.048);
12
+ --color-neutral: oklch(27.949% 0.036 260.03);
13
+ --color-neutral-content: oklch(85.589% 0.007 260.03);
14
+ --color-info: oklch(68.455% 0.148 237.251);
15
+ --color-info-content: oklch(0% 0 0);
16
+ --color-success: oklch(78.452% 0.132 181.911);
17
+ --color-success-content: oklch(15.69% 0.026 181.911);
18
+ --color-warning: oklch(83.242% 0.139 82.95);
19
+ --color-warning-content: oklch(16.648% 0.027 82.95);
20
+ --color-error: oklch(71.785% 0.17 13.118);
21
+ --color-error-content: oklch(14.357% 0.034 13.118);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.5rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(95.127% 0.007 260.731);
3
+ --color-base-200: oklch(93.299% 0.01 261.788);
4
+ --color-base-300: oklch(89.925% 0.016 262.749);
5
+ --color-base-content: oklch(32.437% 0.022 264.182);
6
+ --color-primary: oklch(59.435% 0.077 254.027);
7
+ --color-primary-content: oklch(11.887% 0.015 254.027);
8
+ --color-secondary: oklch(69.651% 0.059 248.687);
9
+ --color-secondary-content: oklch(13.93% 0.011 248.687);
10
+ --color-accent: oklch(77.464% 0.062 217.469);
11
+ --color-accent-content: oklch(15.492% 0.012 217.469);
12
+ --color-neutral: oklch(45.229% 0.035 264.131);
13
+ --color-neutral-content: oklch(89.925% 0.016 262.749);
14
+ --color-info: oklch(69.207% 0.062 332.664);
15
+ --color-info-content: oklch(13.841% 0.012 332.664);
16
+ --color-success: oklch(76.827% 0.074 131.063);
17
+ --color-success-content: oklch(15.365% 0.014 131.063);
18
+ --color-warning: oklch(85.486% 0.089 84.093);
19
+ --color-warning-content: oklch(17.097% 0.017 84.093);
20
+ --color-error: oklch(60.61% 0.12 15.341);
21
+ --color-error-content: oklch(12.122% 0.024 15.341);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 0.25rem;
24
+ --radius-box: 0.5rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(100% 0 0);
3
+ --color-base-200: oklch(98.462% 0.001 247.838);
4
+ --color-base-300: oklch(92.462% 0.001 247.838);
5
+ --color-base-content: oklch(20% 0 0);
6
+ --color-primary: oklch(90% 0.063 306.703);
7
+ --color-primary-content: oklch(49% 0.265 301.924);
8
+ --color-secondary: oklch(89% 0.058 10.001);
9
+ --color-secondary-content: oklch(51% 0.222 16.935);
10
+ --color-accent: oklch(90% 0.093 164.15);
11
+ --color-accent-content: oklch(50% 0.118 165.612);
12
+ --color-neutral: oklch(55% 0.046 257.417);
13
+ --color-neutral-content: oklch(92% 0.013 255.508);
14
+ --color-info: oklch(86% 0.127 207.078);
15
+ --color-info-content: oklch(52% 0.105 223.128);
16
+ --color-success: oklch(87% 0.15 154.449);
17
+ --color-success-content: oklch(52% 0.154 150.069);
18
+ --color-warning: oklch(83% 0.128 66.29);
19
+ --color-warning-content: oklch(55% 0.195 38.402);
20
+ --color-error: oklch(80% 0.114 19.571);
21
+ --color-error-content: oklch(50% 0.213 27.518);
22
+ --radius-selector: 1rem;
23
+ --radius-field: 2rem;
24
+ --radius-box: 1rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 2px;
28
+ --depth: 0;
29
+ --noise: 0;
@@ -0,0 +1,29 @@
1
+ color-scheme: light;
2
+ --color-base-100: oklch(91.637% 0.034 90.515);
3
+ --color-base-200: oklch(88.272% 0.049 91.774);
4
+ --color-base-300: oklch(84.133% 0.065 90.856);
5
+ --color-base-content: oklch(41% 0.112 45.904);
6
+ --color-primary: oklch(80% 0.114 19.571);
7
+ --color-primary-content: oklch(39% 0.141 25.723);
8
+ --color-secondary: oklch(92% 0.084 155.995);
9
+ --color-secondary-content: oklch(44% 0.119 151.328);
10
+ --color-accent: oklch(68% 0.162 75.834);
11
+ --color-accent-content: oklch(41% 0.112 45.904);
12
+ --color-neutral: oklch(44% 0.011 73.639);
13
+ --color-neutral-content: oklch(86% 0.005 56.366);
14
+ --color-info: oklch(58% 0.158 241.966);
15
+ --color-info-content: oklch(96% 0.059 95.617);
16
+ --color-success: oklch(51% 0.096 186.391);
17
+ --color-success-content: oklch(96% 0.059 95.617);
18
+ --color-warning: oklch(64% 0.222 41.116);
19
+ --color-warning-content: oklch(96% 0.059 95.617);
20
+ --color-error: oklch(70% 0.191 22.216);
21
+ --color-error-content: oklch(40% 0.123 38.172);
22
+ --radius-selector: 0.25rem;
23
+ --radius-field: 0.25rem;
24
+ --radius-box: 0.5rem;
25
+ --size-selector: 0.25rem;
26
+ --size-field: 0.25rem;
27
+ --border: 1px;
28
+ --depth: 0;
29
+ --noise: 0;