@rokkit/themes 1.0.0-next.99 → 1.0.1

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 (356) hide show
  1. package/README.md +118 -9
  2. package/build.mjs +254 -0
  3. package/package.json +221 -48
  4. package/src/ant-design/button.css +190 -0
  5. package/src/ant-design/card.css +100 -0
  6. package/src/ant-design/chart.css +34 -0
  7. package/src/ant-design/connector.css +11 -0
  8. package/src/ant-design/dropdown.css +50 -0
  9. package/src/ant-design/floating-action.css +63 -0
  10. package/src/ant-design/floating-navigation.css +70 -0
  11. package/src/ant-design/grid.css +46 -0
  12. package/src/ant-design/index.css +35 -0
  13. package/src/ant-design/input.css +151 -0
  14. package/src/ant-design/list.css +126 -0
  15. package/src/ant-design/menu.css +88 -0
  16. package/src/ant-design/message.css +35 -0
  17. package/src/ant-design/range.css +61 -0
  18. package/src/ant-design/search-filter.css +49 -0
  19. package/src/ant-design/select.css +158 -0
  20. package/src/ant-design/status-list.css +66 -0
  21. package/src/ant-design/step-indicator.css +38 -0
  22. package/src/ant-design/switch.css +29 -0
  23. package/src/ant-design/table.css +91 -0
  24. package/src/ant-design/tabs.css +153 -0
  25. package/src/ant-design/timeline.css +45 -0
  26. package/src/ant-design/toc.css +18 -0
  27. package/src/ant-design/toggle.css +48 -0
  28. package/src/ant-design/toolbar.css +85 -0
  29. package/src/ant-design/tree.css +137 -0
  30. package/src/ant-design/upload-progress.css +102 -0
  31. package/src/ant-design/upload-target.css +50 -0
  32. package/src/base/alert-list.css +91 -0
  33. package/src/base/avatar.css +82 -0
  34. package/src/base/badge.css +41 -0
  35. package/src/base/breadcrumbs.css +47 -0
  36. package/src/base/button.css +254 -0
  37. package/src/base/card.css +39 -0
  38. package/src/base/carousel.css +122 -12
  39. package/src/base/chart.css +94 -0
  40. package/src/base/connector.css +92 -0
  41. package/src/base/density.css +51 -0
  42. package/src/base/display.css +91 -0
  43. package/src/base/divider.css +49 -0
  44. package/src/base/dropdown.css +167 -0
  45. package/src/base/floating-action.css +388 -0
  46. package/src/base/floating-navigation.css +405 -0
  47. package/src/base/graph-paper.css +83 -0
  48. package/src/base/grid.css +93 -0
  49. package/src/base/index.css +55 -0
  50. package/src/base/input.css +290 -0
  51. package/src/base/item.css +78 -0
  52. package/src/base/list.css +188 -0
  53. package/src/base/menu.css +277 -0
  54. package/src/base/message.css +62 -0
  55. package/src/base/pill.css +57 -0
  56. package/src/base/progress.css +34 -0
  57. package/src/base/range.css +121 -0
  58. package/src/base/rating.css +42 -0
  59. package/src/base/reveal.css +37 -0
  60. package/src/base/search-filter.css +132 -0
  61. package/src/base/select.css +413 -0
  62. package/src/base/shine.css +14 -0
  63. package/src/base/stack.css +76 -0
  64. package/src/base/status-list.css +19 -0
  65. package/src/base/step-indicator.css +74 -0
  66. package/src/base/stepper.css +140 -0
  67. package/src/base/swatch.css +85 -0
  68. package/src/base/switch.css +152 -0
  69. package/src/base/table.css +193 -33
  70. package/src/base/tabs.css +171 -0
  71. package/src/base/tilt.css +14 -0
  72. package/src/base/timeline.css +84 -0
  73. package/src/base/toc.css +50 -0
  74. package/src/base/toggle.css +138 -0
  75. package/src/base/toolbar.css +341 -0
  76. package/src/base/tooltip.css +64 -0
  77. package/src/base/tree.css +228 -11
  78. package/src/base/typography.css +31 -0
  79. package/src/base/upload-progress.css +155 -0
  80. package/src/base/upload-target.css +77 -0
  81. package/src/bits-ui/button.css +176 -0
  82. package/src/bits-ui/card.css +99 -0
  83. package/src/bits-ui/chart.css +34 -0
  84. package/src/bits-ui/connector.css +11 -0
  85. package/src/bits-ui/dropdown.css +50 -0
  86. package/src/bits-ui/floating-action.css +63 -0
  87. package/src/bits-ui/floating-navigation.css +70 -0
  88. package/src/bits-ui/grid.css +46 -0
  89. package/src/bits-ui/index.css +35 -0
  90. package/src/bits-ui/input.css +154 -0
  91. package/src/bits-ui/list.css +126 -0
  92. package/src/bits-ui/menu.css +88 -0
  93. package/src/bits-ui/message.css +35 -0
  94. package/src/bits-ui/range.css +61 -0
  95. package/src/bits-ui/search-filter.css +49 -0
  96. package/src/bits-ui/select.css +158 -0
  97. package/src/bits-ui/status-list.css +66 -0
  98. package/src/bits-ui/step-indicator.css +40 -0
  99. package/src/bits-ui/switch.css +29 -0
  100. package/src/bits-ui/table.css +89 -0
  101. package/src/bits-ui/tabs.css +151 -0
  102. package/src/bits-ui/timeline.css +45 -0
  103. package/src/bits-ui/toc.css +18 -0
  104. package/src/bits-ui/toggle.css +48 -0
  105. package/src/bits-ui/toolbar.css +85 -0
  106. package/src/bits-ui/tree.css +135 -0
  107. package/src/bits-ui/upload-progress.css +102 -0
  108. package/src/bits-ui/upload-target.css +50 -0
  109. package/src/carbon/button.css +186 -0
  110. package/src/carbon/card.css +97 -0
  111. package/src/carbon/chart.css +34 -0
  112. package/src/carbon/connector.css +11 -0
  113. package/src/carbon/dropdown.css +50 -0
  114. package/src/carbon/floating-action.css +63 -0
  115. package/src/carbon/floating-navigation.css +70 -0
  116. package/src/carbon/grid.css +46 -0
  117. package/src/carbon/index.css +34 -0
  118. package/src/carbon/input.css +148 -0
  119. package/src/carbon/list.css +124 -0
  120. package/src/carbon/menu.css +88 -0
  121. package/src/carbon/message.css +37 -0
  122. package/src/carbon/range.css +61 -0
  123. package/src/carbon/search-filter.css +49 -0
  124. package/src/carbon/select.css +158 -0
  125. package/src/carbon/status-list.css +66 -0
  126. package/src/carbon/step-indicator.css +40 -0
  127. package/src/carbon/switch.css +31 -0
  128. package/src/carbon/table.css +93 -0
  129. package/src/carbon/tabs.css +151 -0
  130. package/src/carbon/timeline.css +45 -0
  131. package/src/carbon/toc.css +22 -0
  132. package/src/carbon/toggle.css +48 -0
  133. package/src/carbon/toolbar.css +84 -0
  134. package/src/carbon/tree.css +135 -0
  135. package/src/carbon/upload-progress.css +102 -0
  136. package/src/carbon/upload-target.css +50 -0
  137. package/src/daisy-ui/button.css +196 -0
  138. package/src/daisy-ui/card.css +99 -0
  139. package/src/daisy-ui/chart.css +34 -0
  140. package/src/daisy-ui/connector.css +11 -0
  141. package/src/daisy-ui/dropdown.css +50 -0
  142. package/src/daisy-ui/floating-action.css +63 -0
  143. package/src/daisy-ui/floating-navigation.css +70 -0
  144. package/src/daisy-ui/grid.css +46 -0
  145. package/src/daisy-ui/index.css +34 -0
  146. package/src/daisy-ui/input.css +148 -0
  147. package/src/daisy-ui/list.css +127 -0
  148. package/src/daisy-ui/menu.css +88 -0
  149. package/src/daisy-ui/message.css +37 -0
  150. package/src/daisy-ui/range.css +61 -0
  151. package/src/daisy-ui/search-filter.css +49 -0
  152. package/src/daisy-ui/select.css +158 -0
  153. package/src/daisy-ui/status-list.css +66 -0
  154. package/src/daisy-ui/step-indicator.css +37 -0
  155. package/src/daisy-ui/switch.css +31 -0
  156. package/src/daisy-ui/table.css +91 -0
  157. package/src/daisy-ui/tabs.css +153 -0
  158. package/src/daisy-ui/timeline.css +45 -0
  159. package/src/daisy-ui/toc.css +22 -0
  160. package/src/daisy-ui/toggle.css +48 -0
  161. package/src/daisy-ui/toolbar.css +85 -0
  162. package/src/daisy-ui/tree.css +137 -0
  163. package/src/daisy-ui/upload-progress.css +102 -0
  164. package/src/daisy-ui/upload-target.css +50 -0
  165. package/src/frosted/button.css +224 -0
  166. package/src/frosted/card.css +130 -0
  167. package/src/frosted/chart.css +38 -0
  168. package/src/frosted/dropdown.css +66 -0
  169. package/src/frosted/floating-action.css +61 -0
  170. package/src/frosted/floating-navigation.css +74 -0
  171. package/src/frosted/index.css +31 -0
  172. package/src/frosted/input.css +135 -0
  173. package/src/frosted/list.css +122 -0
  174. package/src/frosted/menu.css +108 -0
  175. package/src/frosted/message.css +35 -0
  176. package/src/frosted/range.css +61 -0
  177. package/src/frosted/search-filter.css +49 -0
  178. package/src/frosted/select.css +178 -0
  179. package/src/frosted/status-list.css +66 -0
  180. package/src/frosted/step-indicator.css +41 -0
  181. package/src/frosted/swatch.css +21 -0
  182. package/src/frosted/switch.css +43 -0
  183. package/src/frosted/table.css +106 -0
  184. package/src/frosted/tabs.css +58 -0
  185. package/src/frosted/timeline.css +46 -0
  186. package/src/frosted/toc.css +18 -0
  187. package/src/frosted/toggle.css +48 -0
  188. package/src/frosted/toolbar.css +84 -0
  189. package/src/frosted/tree.css +110 -0
  190. package/src/grada-ui/button.css +249 -0
  191. package/src/grada-ui/card.css +96 -0
  192. package/src/grada-ui/chart.css +34 -0
  193. package/src/grada-ui/dropdown.css +58 -0
  194. package/src/grada-ui/floating-action.css +66 -0
  195. package/src/grada-ui/floating-navigation.css +69 -0
  196. package/src/grada-ui/index.css +56 -0
  197. package/src/grada-ui/input.css +154 -0
  198. package/src/grada-ui/list.css +124 -0
  199. package/src/grada-ui/menu.css +81 -0
  200. package/src/grada-ui/message.css +48 -0
  201. package/src/grada-ui/range.css +59 -0
  202. package/src/grada-ui/search-filter.css +47 -0
  203. package/src/grada-ui/select.css +190 -0
  204. package/src/grada-ui/status-list.css +66 -0
  205. package/src/grada-ui/step-indicator.css +37 -0
  206. package/src/grada-ui/switch.css +35 -0
  207. package/src/grada-ui/table.css +79 -0
  208. package/src/grada-ui/tabs.css +59 -0
  209. package/src/grada-ui/timeline.css +46 -0
  210. package/src/grada-ui/toc.css +24 -0
  211. package/src/grada-ui/toggle.css +47 -0
  212. package/src/grada-ui/toolbar.css +91 -0
  213. package/src/grada-ui/tree.css +100 -0
  214. package/src/index.css +18 -0
  215. package/src/index.js +25 -3
  216. package/src/material/button.css +178 -0
  217. package/src/material/card.css +99 -0
  218. package/src/material/chart.css +38 -0
  219. package/src/material/dropdown.css +50 -0
  220. package/src/material/floating-action.css +64 -0
  221. package/src/material/floating-navigation.css +74 -0
  222. package/src/material/index.css +31 -0
  223. package/src/material/input.css +139 -40
  224. package/src/material/list.css +94 -64
  225. package/src/material/menu.css +92 -0
  226. package/src/material/message.css +35 -0
  227. package/src/material/range.css +62 -0
  228. package/src/material/search-filter.css +49 -0
  229. package/src/material/select.css +177 -0
  230. package/src/material/status-list.css +66 -0
  231. package/src/material/step-indicator.css +41 -0
  232. package/src/material/swatch.css +21 -0
  233. package/src/material/switch.css +28 -0
  234. package/src/material/table.css +110 -0
  235. package/src/material/tabs.css +88 -0
  236. package/src/material/timeline.css +46 -0
  237. package/src/material/toc.css +18 -0
  238. package/src/material/toggle.css +48 -0
  239. package/src/material/toolbar.css +85 -0
  240. package/src/material/tree.css +134 -0
  241. package/src/minimal/button.css +176 -0
  242. package/src/minimal/card.css +99 -0
  243. package/src/minimal/chart.css +38 -0
  244. package/src/minimal/dropdown.css +50 -0
  245. package/src/minimal/floating-action.css +63 -0
  246. package/src/minimal/floating-navigation.css +70 -0
  247. package/src/minimal/index.css +31 -0
  248. package/src/minimal/input.css +137 -120
  249. package/src/minimal/list.css +96 -104
  250. package/src/minimal/menu.css +88 -0
  251. package/src/minimal/message.css +35 -0
  252. package/src/minimal/range.css +61 -0
  253. package/src/minimal/search-filter.css +49 -0
  254. package/src/minimal/select.css +170 -0
  255. package/src/minimal/status-list.css +66 -0
  256. package/src/minimal/step-indicator.css +40 -0
  257. package/src/minimal/swatch.css +21 -0
  258. package/src/minimal/switch.css +32 -0
  259. package/src/minimal/table.css +108 -0
  260. package/src/minimal/tabs.css +135 -28
  261. package/src/minimal/timeline.css +45 -0
  262. package/src/minimal/toc.css +18 -0
  263. package/src/minimal/toggle.css +48 -0
  264. package/src/minimal/toolbar.css +85 -0
  265. package/src/minimal/tree.css +135 -0
  266. package/src/palette.css +2 -20
  267. package/src/rokkit/avatar.css +29 -0
  268. package/src/rokkit/badge.css +29 -0
  269. package/src/rokkit/button.css +290 -0
  270. package/src/rokkit/card.css +102 -0
  271. package/src/rokkit/chart.css +38 -0
  272. package/src/rokkit/connector.css +11 -0
  273. package/src/rokkit/divider.css +26 -0
  274. package/src/rokkit/dropdown.css +70 -0
  275. package/src/rokkit/floating-action.css +65 -0
  276. package/src/rokkit/floating-navigation.css +83 -0
  277. package/src/rokkit/grid.css +46 -0
  278. package/src/rokkit/index.css +40 -0
  279. package/src/rokkit/input.css +124 -26
  280. package/src/rokkit/list.css +177 -0
  281. package/src/rokkit/menu.css +93 -0
  282. package/src/rokkit/message.css +44 -0
  283. package/src/rokkit/range.css +62 -0
  284. package/src/rokkit/search-filter.css +49 -0
  285. package/src/rokkit/select.css +190 -0
  286. package/src/rokkit/stack.css +6 -0
  287. package/src/rokkit/status-list.css +68 -0
  288. package/src/rokkit/step-indicator.css +41 -0
  289. package/src/rokkit/swatch.css +20 -0
  290. package/src/rokkit/switch.css +29 -0
  291. package/src/rokkit/table.css +88 -37
  292. package/src/rokkit/tabs.css +111 -0
  293. package/src/rokkit/timeline.css +46 -0
  294. package/src/rokkit/toc.css +18 -0
  295. package/src/rokkit/toggle.css +41 -11
  296. package/src/rokkit/toolbar.css +90 -0
  297. package/src/rokkit/tooltip.css +7 -0
  298. package/src/rokkit/tree.css +149 -0
  299. package/src/rokkit/upload-progress.css +102 -0
  300. package/src/rokkit/upload-target.css +50 -0
  301. package/src/shadcn/button.css +175 -0
  302. package/src/shadcn/card.css +99 -0
  303. package/src/shadcn/chart.css +34 -0
  304. package/src/shadcn/connector.css +11 -0
  305. package/src/shadcn/dropdown.css +50 -0
  306. package/src/shadcn/floating-action.css +63 -0
  307. package/src/shadcn/floating-navigation.css +70 -0
  308. package/src/shadcn/grid.css +46 -0
  309. package/src/shadcn/index.css +35 -0
  310. package/src/shadcn/input.css +143 -0
  311. package/src/shadcn/list.css +124 -0
  312. package/src/shadcn/menu.css +88 -0
  313. package/src/shadcn/message.css +35 -0
  314. package/src/shadcn/range.css +61 -0
  315. package/src/shadcn/search-filter.css +49 -0
  316. package/src/shadcn/select.css +158 -0
  317. package/src/shadcn/status-list.css +66 -0
  318. package/src/shadcn/step-indicator.css +37 -0
  319. package/src/shadcn/switch.css +31 -0
  320. package/src/shadcn/table.css +89 -0
  321. package/src/shadcn/tabs.css +151 -0
  322. package/src/shadcn/timeline.css +45 -0
  323. package/src/shadcn/toc.css +20 -0
  324. package/src/shadcn/toggle.css +48 -0
  325. package/src/shadcn/toolbar.css +84 -0
  326. package/src/shadcn/tree.css +135 -0
  327. package/src/shadcn/upload-progress.css +102 -0
  328. package/src/shadcn/upload-target.css +50 -0
  329. package/LICENSE +0 -21
  330. package/src/base/alert.css +0 -30
  331. package/src/base/animation.css +0 -22
  332. package/src/base/atoms.css +0 -58
  333. package/src/base/core.css +0 -92
  334. package/src/base/layout.css +0 -65
  335. package/src/base/molecules.css +0 -126
  336. package/src/base/organisms.css +0 -26
  337. package/src/base/scrollbar.css +0 -16
  338. package/src/base.css +0 -11
  339. package/src/constants.js +0 -8
  340. package/src/markdown.css +0 -955
  341. package/src/material/base.css +0 -12
  342. package/src/material/form.css +0 -30
  343. package/src/material.css +0 -9
  344. package/src/minimal/base.css +0 -8
  345. package/src/minimal/form.css +0 -87
  346. package/src/minimal.css +0 -11
  347. package/src/mixins/mixins.scss +0 -66
  348. package/src/mixins/palette.scss +0 -48
  349. package/src/prism.css +0 -102
  350. package/src/rokkit/alert.css +0 -4
  351. package/src/rokkit/atoms.css +0 -69
  352. package/src/rokkit/carousel.css +0 -19
  353. package/src/rokkit/layout.css +0 -17
  354. package/src/rokkit/molecules.css +0 -119
  355. package/src/rokkit/organisms.css +0 -315
  356. package/src/rokkit.css +0 -11
@@ -0,0 +1,135 @@
1
+ /* Glass Theme - Form field and input styles
2
+ * Glassmorphism inputs with blur, transparency, and subtle borders.
3
+ */
4
+
5
+ /* Field root: text color, spacing */
6
+ [data-style='frosted'] [data-field-root] {
7
+ @apply text-surface-z9 gap-1 rounded-md transition-all;
8
+ }
9
+
10
+ /* Disabled state */
11
+ [data-style='frosted'] [data-field-root][data-field-disabled] [data-input-root] {
12
+ @apply cursor-not-allowed opacity-50;
13
+ }
14
+
15
+ /* Labels */
16
+ [data-style='frosted'] [data-field] > label {
17
+ @apply text-surface-z7;
18
+ }
19
+
20
+ [data-style='frosted'] [data-form-root] label {
21
+ @apply text-surface-z7;
22
+ }
23
+
24
+ /* Info field value */
25
+ [data-style='frosted'] [data-field-info] {
26
+ @apply text-primary-z6 font-medium;
27
+ }
28
+
29
+ /* Separator */
30
+ [data-style='frosted'] [data-form-separator] {
31
+ @apply border-surface-z5/20;
32
+ }
33
+
34
+ /* Input root: frosted glass container — p-0.5 gives a small gap between border and content.
35
+ * No backdrop-blur here: it creates a stacking context that traps select dropdowns.
36
+ * The semi-transparent background + specular border provides the liquid glass look. */
37
+ [data-style='frosted'] [data-input-root] {
38
+ @apply flex items-center rounded-md border p-0.5 transition-all;
39
+ background: color-mix(in srgb, var(--color-surface-z3, #888) 22%, transparent);
40
+ background-image: none;
41
+ border-color: rgba(255, 255, 255, 0.2);
42
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
43
+ }
44
+
45
+ [data-style='frosted'] [data-input-root]:hover {
46
+ border-color: rgba(255, 255, 255, 0.28);
47
+ }
48
+
49
+ [data-style='frosted'] [data-input-root]:focus-within {
50
+ background: color-mix(in srgb, var(--color-surface-z3, #888) 28%, transparent);
51
+ background-image: none;
52
+ border-color: rgba(255, 255, 255, 0.35);
53
+ box-shadow:
54
+ inset 0 1px 0 rgba(255, 255, 255, 0.18),
55
+ 0 0 0 2px rgba(255, 255, 255, 0.12);
56
+ }
57
+
58
+ /* Standard inputs inside wrapper */
59
+ [data-style='frosted'] [data-input-root] input:not([type='checkbox'], [type='radio'], [type='color']),
60
+ [data-style='frosted'] [data-input-root] select {
61
+ @apply text-surface-z8 rounded-md border-none bg-transparent px-3 focus:outline-none;
62
+ font-size: 0.875rem;
63
+ height: 2.25rem;
64
+ }
65
+
66
+ [data-style='frosted'] [data-input-root] textarea {
67
+ @apply text-surface-z8 rounded-md border-none bg-transparent px-3 py-2 focus:outline-none;
68
+ font-size: 0.875rem;
69
+ }
70
+
71
+ /* Select inside input-root: suppress standalone glass select styles */
72
+ [data-style='frosted'] [data-input-root] [data-select-trigger] {
73
+ @apply text-surface-z8 rounded-md border-none bg-transparent shadow-none ring-0 focus:outline-none;
74
+ background-image: none;
75
+ backdrop-filter: none;
76
+ }
77
+
78
+ /* Suppress standalone select open-state when inside input-root */
79
+ [data-style='frosted'] [data-input-root] [data-select][data-open='true'] [data-select-trigger] {
80
+ @apply border-none shadow-none ring-0;
81
+ }
82
+
83
+ /* Placeholders */
84
+ [data-style='frosted'] [data-input-root] input::placeholder,
85
+ [data-style='frosted'] [data-input-root] textarea::placeholder {
86
+ @apply text-surface-z5;
87
+ }
88
+
89
+ /* Checkbox field */
90
+ [data-style='frosted'] [data-field-type='checkbox'] [data-field] {
91
+ @apply flex items-center leading-loose;
92
+ }
93
+
94
+ /* Checkbox icon */
95
+ [data-style='frosted'] [data-checkbox-icon] {
96
+ @apply text-surface-z5 cursor-pointer rounded text-lg transition-colors;
97
+ }
98
+
99
+ [data-style='frosted'] [data-checkbox-icon]:focus-visible {
100
+ @apply outline-primary-z4 outline-2 outline-offset-2;
101
+ }
102
+
103
+ [data-style='frosted']
104
+ [data-checkbox-root][data-variant='custom']:has(input:checked)
105
+ [data-checkbox-icon] {
106
+ @apply text-primary-z6;
107
+ }
108
+
109
+ [data-style='frosted'] [data-field] textarea {
110
+ @apply resize-vertical min-h-20 py-2;
111
+ }
112
+
113
+ /* Color input */
114
+ [data-style='frosted'] [data-field-type='color'] [data-input-root] {
115
+ @apply overflow-hidden;
116
+ }
117
+
118
+ [data-style='frosted'] [data-field-type='color'] input[type='color'] {
119
+ @apply flex min-h-11 flex-1 rounded-md bg-transparent focus:outline-none;
120
+ }
121
+
122
+ /* Description and message */
123
+ [data-style='frosted'] [data-description],
124
+ [data-style='frosted'] [data-message] {
125
+ @apply text-surface-z6;
126
+ }
127
+
128
+ [data-style='frosted'] [data-message] {
129
+ @apply rounded-md px-2 py-1;
130
+ }
131
+
132
+ /* Error state */
133
+ [data-style='frosted'] [data-field-root][data-field-state='fail'] [data-input-root] {
134
+ @apply border-danger-z5/50;
135
+ }
@@ -0,0 +1,122 @@
1
+ /**
2
+ * List - Glass Theme Styles
3
+ *
4
+ * Glassmorphism styling with blur and transparency.
5
+ */
6
+
7
+ /* =============================================================================
8
+ List Container
9
+ ============================================================================= */
10
+
11
+ [data-style='frosted'] [data-list]:focus-within {
12
+ @apply ring-surface-z5/40 rounded ring-1;
13
+ }
14
+
15
+ /* =============================================================================
16
+ List Items
17
+ ============================================================================= */
18
+
19
+ [data-style='frosted'] [data-list] [data-list-item] {
20
+ @apply text-surface-z8;
21
+ }
22
+
23
+ [data-style='frosted'] [data-list] a[data-list-item],
24
+ [data-style='frosted'] [data-list] button[data-list-item] {
25
+ @apply text-surface-z7;
26
+ }
27
+
28
+ /* Hover and focus (keyboard navigation) */
29
+ [data-style='frosted'] [data-list] [data-list-item]:hover:not(:disabled):not([data-disabled='true']),
30
+ [data-style='frosted'] [data-list] [data-list-item]:focus:not(:disabled):not([data-disabled='true']) {
31
+ @apply bg-surface-z2/15 text-surface-z10 bg-none outline-none;
32
+ }
33
+
34
+ /* Active state — muted when list not focused */
35
+ [data-style='frosted'] [data-list] [data-list-item][data-active='true'] {
36
+ @apply bg-surface-z2/15 text-primary-z9 bg-none;
37
+ }
38
+
39
+ /* Active state — full highlight when list has focus */
40
+ [data-style='frosted'] [data-list]:focus-within [data-list-item][data-active='true'] {
41
+ @apply bg-primary-z5/30 text-primary-z9 bg-none;
42
+ }
43
+
44
+ /* Active + hover/focus */
45
+ [data-style='frosted'] [data-list] [data-list-item][data-active='true']:hover:not(:disabled),
46
+ [data-style='frosted'] [data-list] [data-list-item][data-active='true']:focus:not(:disabled) {
47
+ @apply bg-primary-z5/40 bg-none;
48
+ }
49
+
50
+ /* =============================================================================
51
+ Item Elements
52
+ ============================================================================= */
53
+
54
+ [data-style='frosted'] [data-list] [data-list-item] [data-item-icon] {
55
+ @apply text-surface-z5;
56
+ }
57
+
58
+ [data-style='frosted'] [data-list] [data-list-item]:hover:not(:disabled) [data-item-icon],
59
+ [data-style='frosted'] [data-list] [data-list-item]:focus:not(:disabled) [data-item-icon] {
60
+ @apply text-surface-z7;
61
+ }
62
+
63
+ [data-style='frosted'] [data-list] [data-list-item][data-active='true'] [data-item-icon] {
64
+ @apply text-primary-z6;
65
+ }
66
+
67
+ [data-style='frosted'] [data-list] [data-list-item] [data-item-description] {
68
+ @apply text-surface-z5;
69
+ }
70
+
71
+ [data-style='frosted'] [data-list] [data-list-item][data-active='true'] [data-item-description] {
72
+ @apply text-primary-z7;
73
+ }
74
+
75
+ [data-style='frosted'] [data-list] [data-list-item] [data-item-badge] {
76
+ @apply bg-surface-z2/15 text-surface-z6 bg-none;
77
+ }
78
+
79
+ [data-style='frosted'] [data-list] [data-list-item][data-active='true'] [data-item-badge] {
80
+ @apply bg-primary-z5/25 text-primary-z8 bg-none;
81
+ }
82
+
83
+ /* =============================================================================
84
+ Groups
85
+ ============================================================================= */
86
+
87
+ [data-style='frosted'] [data-list] [data-list-group] {
88
+ @apply text-surface-z6;
89
+ }
90
+
91
+ [data-style='frosted'] [data-list] [data-list-group]:hover:not(:disabled),
92
+ [data-style='frosted'] [data-list] [data-list-group]:focus:not(:disabled) {
93
+ @apply bg-surface-z3/25 text-surface-z8 bg-none;
94
+ }
95
+
96
+ /* =============================================================================
97
+ Separator
98
+ ============================================================================= */
99
+
100
+ [data-style='frosted'] [data-list] [data-list-separator] {
101
+ @apply bg-surface-z5/20 bg-none;
102
+ }
103
+
104
+ /* =============================================================================
105
+ Multi-Selection
106
+ ============================================================================= */
107
+
108
+ [data-style='frosted'] [data-list] [data-list-item][data-selected='true'] {
109
+ @apply bg-primary-z5/20 text-primary-z9 bg-none;
110
+ }
111
+
112
+ [data-style='frosted'] [data-list]:focus-within [data-list-item][data-selected='true'] {
113
+ @apply bg-primary-z5/30 bg-none;
114
+ }
115
+
116
+ [data-style='frosted'] [data-list] [data-list-item][data-selected='true']:hover:not(:disabled) {
117
+ @apply bg-primary-z5/40 bg-none;
118
+ }
119
+
120
+ [data-style='frosted'] [data-list] [data-list-item][data-selected='true'] [data-item-icon] {
121
+ @apply text-primary-z6;
122
+ }
@@ -0,0 +1,108 @@
1
+ /**
2
+ * Menu - Frosted Glass Theme Styles
3
+ *
4
+ * Liquid frosted glass: translucent trigger + deeply blurred panel with specular border.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Menu Trigger
9
+ ============================================================================= */
10
+
11
+ [data-style='frosted'] [data-menu-trigger] {
12
+ @apply text-surface-z8 border bg-none backdrop-blur-xl;
13
+ background: color-mix(in srgb, var(--color-surface-z3, #888) 25%, transparent);
14
+ border-color: rgba(255, 255, 255, 0.2);
15
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
16
+ }
17
+
18
+ [data-style='frosted'] [data-menu-trigger]:hover:not(:disabled) {
19
+ @apply text-surface-z10 bg-none;
20
+ background: color-mix(in srgb, var(--color-surface-z3, #888) 36%, transparent);
21
+ border-color: rgba(255, 255, 255, 0.28);
22
+ }
23
+
24
+ [data-style='frosted'] [data-menu-trigger]:focus-visible {
25
+ outline: none;
26
+ box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
27
+ }
28
+
29
+ [data-style='frosted'] [data-menu][data-open='true'] [data-menu-trigger] {
30
+ @apply bg-none;
31
+ background: color-mix(in srgb, var(--color-primary-500, #6366f1) 35%, transparent);
32
+ border-color: rgba(255, 255, 255, 0.3);
33
+ }
34
+
35
+ /* Trigger elements */
36
+ [data-style='frosted'] [data-menu-trigger] [data-menu-icon] {
37
+ @apply text-surface-z5;
38
+ }
39
+
40
+ [data-style='frosted'] [data-menu-trigger]:hover:not(:disabled) [data-menu-icon] {
41
+ @apply text-surface-z7;
42
+ }
43
+
44
+ [data-style='frosted'] [data-menu-trigger] [data-menu-arrow] {
45
+ @apply text-surface-z5;
46
+ }
47
+
48
+ /* =============================================================================
49
+ Menu Dropdown
50
+ ============================================================================= */
51
+
52
+ [data-style='frosted'] [data-menu-dropdown] {
53
+ @apply border bg-none shadow-xl backdrop-blur-2xl;
54
+ background: color-mix(in srgb, var(--color-surface-z2, #888) 45%, transparent);
55
+ border-color: rgba(255, 255, 255, 0.2);
56
+ box-shadow:
57
+ inset 0 1px 0 rgba(255, 255, 255, 0.2),
58
+ 0 16px 48px rgba(0, 0, 0, 0.14);
59
+ }
60
+
61
+ /* =============================================================================
62
+ Menu Items
63
+ ============================================================================= */
64
+
65
+ [data-style='frosted'] [data-menu-item] {
66
+ @apply text-surface-z8;
67
+ }
68
+
69
+ [data-style='frosted'] [data-menu-item]:hover:not(:disabled),
70
+ [data-style='frosted'] [data-menu-item]:focus:not(:disabled) {
71
+ @apply text-surface-z10 bg-none outline-none;
72
+ background: rgba(255, 255, 255, 0.08);
73
+ }
74
+
75
+ [data-style='frosted'] [data-menu-item]:focus-visible {
76
+ outline: none;
77
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
78
+ }
79
+
80
+ /* Item elements */
81
+ [data-style='frosted'] [data-menu-item] [data-item-icon] {
82
+ @apply text-surface-z5;
83
+ }
84
+
85
+ [data-style='frosted'] [data-menu-item]:hover:not(:disabled) [data-item-icon] {
86
+ @apply text-surface-z7;
87
+ }
88
+
89
+ [data-style='frosted'] [data-menu-item] [data-item-description] {
90
+ @apply text-surface-z5;
91
+ }
92
+
93
+ /* =============================================================================
94
+ Groups
95
+ ============================================================================= */
96
+
97
+ [data-style='frosted'] [data-menu-group] {
98
+ @apply text-surface-z5;
99
+ }
100
+
101
+ /* =============================================================================
102
+ Divider
103
+ ============================================================================= */
104
+
105
+ [data-style='frosted'] [data-menu-separator] {
106
+ @apply bg-none;
107
+ background: rgba(255, 255, 255, 0.1);
108
+ }
@@ -0,0 +1,35 @@
1
+ /**
2
+ * Message - Glass Theme Styles
3
+ */
4
+
5
+ [data-style='frosted'] [data-message-root][data-type='error'] {
6
+ @apply bg-error-z2/50 border-error-z4/40 text-error-z8 backdrop-blur-sm;
7
+ }
8
+ [data-style='frosted'] [data-message-root][data-type='error'] [data-message-icon],
9
+ [data-style='frosted'] [data-message-root][data-type='error'] [data-message-dismiss] {
10
+ @apply text-error-z6;
11
+ }
12
+
13
+ [data-style='frosted'] [data-message-root][data-type='warning'] {
14
+ @apply bg-warning-z2/50 border-warning-z4/40 text-warning-z8 backdrop-blur-sm;
15
+ }
16
+ [data-style='frosted'] [data-message-root][data-type='warning'] [data-message-icon],
17
+ [data-style='frosted'] [data-message-root][data-type='warning'] [data-message-dismiss] {
18
+ @apply text-warning-z6;
19
+ }
20
+
21
+ [data-style='frosted'] [data-message-root][data-type='info'] {
22
+ @apply bg-info-z2/50 border-info-z4/40 text-info-z8 backdrop-blur-sm;
23
+ }
24
+ [data-style='frosted'] [data-message-root][data-type='info'] [data-message-icon],
25
+ [data-style='frosted'] [data-message-root][data-type='info'] [data-message-dismiss] {
26
+ @apply text-info-z6;
27
+ }
28
+
29
+ [data-style='frosted'] [data-message-root][data-type='success'] {
30
+ @apply bg-success-z2/50 border-success-z4/40 text-success-z8 backdrop-blur-sm;
31
+ }
32
+ [data-style='frosted'] [data-message-root][data-type='success'] [data-message-icon],
33
+ [data-style='frosted'] [data-message-root][data-type='success'] [data-message-dismiss] {
34
+ @apply text-success-z6;
35
+ }
@@ -0,0 +1,61 @@
1
+ /**
2
+ * Range - Glass Theme Styles
3
+ *
4
+ * Glassmorphism styling with blur and transparency.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Track
9
+ ============================================================================= */
10
+
11
+ [data-style='frosted'] [data-range-bar] {
12
+ @apply bg-surface-z2/50 border-surface-z5/20 border;
13
+ }
14
+
15
+ [data-style='frosted'] [data-range-selected] {
16
+ @apply bg-primary/40;
17
+ }
18
+
19
+ /* =============================================================================
20
+ Thumb
21
+ ============================================================================= */
22
+
23
+ [data-style='frosted'] [data-range-thumb] {
24
+ @apply bg-primary/80 border-primary/50 backdrop-blur-sm;
25
+ }
26
+
27
+ [data-style='frosted'] [data-range-thumb][data-sliding] {
28
+ box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 20%, transparent);
29
+ }
30
+
31
+ [data-style='frosted'] [data-range-thumb]:focus-visible {
32
+ box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 20%, transparent);
33
+ }
34
+
35
+ /* =============================================================================
36
+ Ticks
37
+ ============================================================================= */
38
+
39
+ [data-style='frosted'] [data-range-tick] {
40
+ @apply text-surface-z6;
41
+ }
42
+
43
+ [data-style='frosted'] [data-tick-bar] {
44
+ @apply border-surface-z5/40;
45
+ }
46
+
47
+ [data-style='frosted'] [data-tick-label] {
48
+ @apply text-surface-z6;
49
+ }
50
+
51
+ /* =============================================================================
52
+ Disabled
53
+ ============================================================================= */
54
+
55
+ [data-style='frosted'] [data-range][data-disabled] [data-range-thumb] {
56
+ @apply bg-surface-z4/50 border-surface-z4/30;
57
+ }
58
+
59
+ [data-style='frosted'] [data-range][data-disabled] [data-range-selected] {
60
+ @apply bg-surface-z4/30;
61
+ }
@@ -0,0 +1,49 @@
1
+ /**
2
+ * SearchFilter - Glass Theme Styles
3
+ *
4
+ * Glassmorphism styling with blur and transparency.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Input
9
+ ============================================================================= */
10
+
11
+ [data-style='frosted'] [data-search-input] {
12
+ @apply text-surface-z8 border-surface-z5/20 bg-surface-z1/50 border backdrop-blur-md;
13
+ }
14
+
15
+ [data-style='frosted'] [data-search-input]:focus {
16
+ @apply border-primary-z5/50 ring-surface-z5/30 ring-1;
17
+ }
18
+
19
+ [data-style='frosted'] [data-search-input]::placeholder {
20
+ @apply text-surface-z5;
21
+ }
22
+
23
+ /* =============================================================================
24
+ Clear Button
25
+ ============================================================================= */
26
+
27
+ [data-style='frosted'] [data-search-clear] {
28
+ @apply text-surface-z5;
29
+ }
30
+
31
+ [data-style='frosted'] [data-search-clear]:hover {
32
+ @apply text-surface-z9;
33
+ }
34
+
35
+ /* =============================================================================
36
+ Tags
37
+ ============================================================================= */
38
+
39
+ [data-style='frosted'] [data-search-tag] {
40
+ @apply text-surface-z8 bg-surface-z2/15;
41
+ }
42
+
43
+ [data-style='frosted'] [data-search-tag-remove] {
44
+ @apply text-surface-z6;
45
+ }
46
+
47
+ [data-style='frosted'] [data-search-tag-remove]:hover {
48
+ @apply text-surface-z9;
49
+ }
@@ -0,0 +1,178 @@
1
+ /**
2
+ * Select - Glass Theme Styles
3
+ *
4
+ * Glassmorphism styling with blur and transparency.
5
+ */
6
+
7
+ /* =============================================================================
8
+ Select Container — elevate when open so dropdown escapes sibling stacking contexts
9
+ ============================================================================= */
10
+
11
+ [data-style='frosted'] [data-select][data-open='true'] {
12
+ z-index: 50;
13
+ }
14
+
15
+ /* =============================================================================
16
+ Trigger Button
17
+ ============================================================================= */
18
+
19
+ [data-style='frosted'] [data-select-trigger] {
20
+ @apply text-surface-z8 bg-surface-z1/70 border-surface-z5/20 border backdrop-blur-md;
21
+ }
22
+
23
+ [data-style='frosted'] [data-select-trigger]:hover:not(:disabled) {
24
+ @apply text-surface-z10 bg-surface-z2/80 border-surface-z5/30;
25
+ }
26
+
27
+ [data-style='frosted'] [data-select-trigger]:focus-visible {
28
+ @apply ring-surface-z5/40 ring-1 outline-none;
29
+ }
30
+
31
+ [data-style='frosted'] [data-select][data-open='true'] [data-select-trigger] {
32
+ @apply border-primary-z5/50;
33
+ }
34
+
35
+ /* =============================================================================
36
+ Placeholder
37
+ ============================================================================= */
38
+
39
+ [data-style='frosted'] [data-select-placeholder] {
40
+ @apply text-surface-z5;
41
+ }
42
+
43
+ /* =============================================================================
44
+ Arrow
45
+ ============================================================================= */
46
+
47
+ [data-style='frosted'] [data-select-arrow] {
48
+ @apply text-surface-z5;
49
+ }
50
+
51
+ [data-style='frosted'] [data-select-trigger]:hover:not(:disabled) [data-select-arrow] {
52
+ @apply text-surface-z7;
53
+ }
54
+
55
+ /* =============================================================================
56
+ Tags (MultiSelect)
57
+ ============================================================================= */
58
+
59
+ [data-style='frosted'] [data-select-tag] {
60
+ @apply text-surface-z8 bg-surface-z2/15;
61
+ }
62
+
63
+ [data-style='frosted'] [data-select-tag-remove] {
64
+ @apply text-surface-z6;
65
+ }
66
+
67
+ [data-style='frosted'] [data-select-tag-remove]:hover {
68
+ @apply text-surface-z9;
69
+ }
70
+
71
+ /* =============================================================================
72
+ Dropdown Panel
73
+ ============================================================================= */
74
+
75
+ [data-style='frosted'] [data-select-dropdown] {
76
+ @apply bg-surface-z2/50 border-surface-z5/20 border shadow-lg backdrop-blur-lg;
77
+ }
78
+
79
+ /* =============================================================================
80
+ Options
81
+ ============================================================================= */
82
+
83
+ [data-style='frosted'] [data-select-option] {
84
+ @apply text-surface-z8;
85
+ }
86
+
87
+ [data-style='frosted'] [data-select-option]:hover:not(:disabled),
88
+ [data-style='frosted'] [data-select-option]:focus:not(:disabled) {
89
+ @apply text-surface-z10 bg-surface-z2/80;
90
+ }
91
+
92
+ [data-style='frosted'] [data-select-option]:focus-visible {
93
+ @apply ring-surface-z5/40 ring-1 outline-none ring-inset;
94
+ }
95
+
96
+ [data-style='frosted'] [data-select-option][data-selected='true'] {
97
+ @apply text-primary-z9 bg-primary-z5/40;
98
+ }
99
+
100
+ [data-style='frosted'] [data-select-option][data-selected='true']:hover:not(:disabled),
101
+ [data-style='frosted'] [data-select-option][data-selected='true']:focus:not(:disabled) {
102
+ @apply bg-primary-z5/60;
103
+ }
104
+
105
+ /* Check mark */
106
+ [data-style='frosted'] [data-select-check] {
107
+ @apply text-primary-z6;
108
+ }
109
+
110
+ /* Checkbox */
111
+ [data-style='frosted'] [data-select-checkbox] {
112
+ @apply border-surface-z5/40 bg-surface-z1/70;
113
+ }
114
+
115
+ [data-style='frosted'] [data-select-checkbox][data-checked='true'] {
116
+ @apply bg-primary-z5 border-primary-z5 text-white;
117
+ }
118
+
119
+ /* Item elements */
120
+ [data-style='frosted'] [data-select-option] [data-item-icon] {
121
+ @apply text-surface-z5;
122
+ }
123
+
124
+ [data-style='frosted'] [data-select-option]:hover:not(:disabled) [data-item-icon] {
125
+ @apply text-surface-z7;
126
+ }
127
+
128
+ [data-style='frosted'] [data-select-option][data-selected='true'] [data-item-icon] {
129
+ @apply text-primary-z6;
130
+ }
131
+
132
+ [data-style='frosted'] [data-select-option] [data-item-description] {
133
+ @apply text-surface-z5;
134
+ }
135
+
136
+ [data-style='frosted'] [data-select-option][data-selected='true'] [data-item-description] {
137
+ @apply text-primary-z7;
138
+ }
139
+
140
+ /* =============================================================================
141
+ Groups
142
+ ============================================================================= */
143
+
144
+ [data-style='frosted'] [data-select-group-label] {
145
+ @apply text-surface-z5;
146
+ }
147
+
148
+ /* =============================================================================
149
+ Divider
150
+ ============================================================================= */
151
+
152
+ [data-style='frosted'] [data-select-divider] {
153
+ @apply bg-surface-z5/20;
154
+ }
155
+
156
+ /* =============================================================================
157
+ Filter Input
158
+ ============================================================================= */
159
+
160
+ [data-style='frosted'] [data-select-filter] {
161
+ @apply bg-surface-z2/30;
162
+ }
163
+
164
+ [data-style='frosted'] [data-select-filter-input] {
165
+ @apply text-surface-z8 border-surface-z5/20 bg-surface-z1/50 border;
166
+ }
167
+
168
+ [data-style='frosted'] [data-select-filter-input]:focus {
169
+ @apply border-primary-z5/50 ring-surface-z5/30 ring-1;
170
+ }
171
+
172
+ [data-style='frosted'] [data-select-filter-input]::placeholder {
173
+ @apply text-surface-z5;
174
+ }
175
+
176
+ [data-style='frosted'] [data-select-empty] {
177
+ @apply text-surface-z5;
178
+ }