@enact/limestone 1.10.1 → 1.10.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 (122) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE.md +1 -0
  2. package/ActionGuide/ActionGuide.d.ts +1 -1
  3. package/ActionGuide/ActionGuide.module.css +3 -0
  4. package/Alert/Alert.d.ts +9 -0
  5. package/Alert/Alert.js +63 -21
  6. package/Alert/Alert.module.css +41 -9
  7. package/Alert/AlertImage.module.css +5 -1
  8. package/Alert/tests/Alert-specs.js +6 -2
  9. package/BodyText/BodyText.d.ts +1 -1
  10. package/BodyText/BodyText.js +14 -9
  11. package/BodyText/BodyText.module.css +1 -1
  12. package/Button/Button.d.ts +3 -3
  13. package/Button/Button.module.css +14 -28
  14. package/CHANGELOG.md +48 -1
  15. package/Card/Card.d.ts +81 -9
  16. package/Card/Card.js +321 -84
  17. package/Card/Card.module.css +171 -20
  18. package/Card/tests/Card-specs.js +100 -0
  19. package/Checkbox/Checkbox.d.ts +2 -2
  20. package/Checkbox/Checkbox.module.css +2 -9
  21. package/CheckboxItem/CheckboxItem.d.ts +8 -1
  22. package/CheckboxItem/CheckboxItem.js +39 -12
  23. package/CheckboxItem/CheckboxItem.module.css +228 -4
  24. package/Chips/Chip.module.css +2 -2
  25. package/ContextualMenuDecorator/ContextualMenuDecorator.d.ts +2 -2
  26. package/ContextualPopupDecorator/ContextualPopup.module.css +1 -1
  27. package/ContextualPopupDecorator/ContextualPopupDecorator.js +2 -4
  28. package/ContextualPopupDecorator/tests/ContextualPopupDecorator-specs.js +39 -2
  29. package/Dropdown/Dropdown.d.ts +2 -2
  30. package/Dropdown/Dropdown.module.css +7 -7
  31. package/FixedPopupPanels/FixedPopupPanels.d.ts +2 -2
  32. package/FlexiblePopupPanels/FlexiblePopupPanels.module.css +15 -3
  33. package/FlexiblePopupPanels/index.d.ts +2 -2
  34. package/FormCheckboxItem/FormCheckboxItem.d.ts +1 -1
  35. package/FormCheckboxItem/FormCheckboxItem.js +1 -0
  36. package/FormCheckboxItem/FormCheckboxItem.module.css +1 -1
  37. package/Heading/Heading.d.ts +2 -2
  38. package/Icon/Icon.d.ts +22 -1
  39. package/Icon/Icon.js +21 -0
  40. package/Icon/IconList.js +43 -1
  41. package/IconItem/IconItem.d.ts +2 -2
  42. package/IconItem/IconItem.module.css +11 -14
  43. package/Image/Image.d.ts +1 -1
  44. package/Image/Image.module.css +1 -1
  45. package/ImageItem/ImageItem.d.ts +2 -2
  46. package/ImageItem/ImageItem.js +3 -16
  47. package/ImageItem/ImageItem.module.css +105 -97
  48. package/ImageItem/tests/ImageItem-specs.js +6 -5
  49. package/Input/Input.module.css +8 -7
  50. package/Input/InputField.module.css +4 -4
  51. package/Input/index.d.ts +1 -1
  52. package/Input/tests/Input-specs.js +2 -2
  53. package/Input/tests/InputField-specs.js +1 -1
  54. package/Item/Item.d.ts +2 -2
  55. package/Item/Item.module.css +27 -15
  56. package/KeyGuide/KeyGuide.d.ts +2 -2
  57. package/MediaOverlay/MediaOverlay.d.ts +2 -2
  58. package/MediaOverlay/MediaOverlay.module.css +2 -5
  59. package/MediaPlayer/MediaSlider.module.css +1 -0
  60. package/MediaPlayer/Times.module.css +1 -1
  61. package/MediaPlayer/index.d.ts +2 -2
  62. package/PageViews/PageViews.module.css +2 -1
  63. package/Panels/Header.module.css +40 -28
  64. package/Panels/Panel.module.css +1 -1
  65. package/Panels/index.d.ts +1 -1
  66. package/Picker/Picker.d.ts +1 -1
  67. package/Popup/Popup.module.css +4 -1
  68. package/PopupTabLayout/PopupTabLayout.d.ts +6 -6
  69. package/PopupTabLayout/PopupTabLayout.module.css +6 -6
  70. package/ProgressBar/ProgressBar.d.ts +1 -1
  71. package/ProgressBar/ProgressBar.module.css +12 -12
  72. package/ProgressBar/ProgressBarTooltip.module.css +7 -7
  73. package/ProgressButton/ProgressButton.d.ts +2 -2
  74. package/QuickGuidePanels/QuickGuidePanels.module.css +1 -1
  75. package/RadioItem/RadioItem.d.ts +1 -1
  76. package/RadioItem/RadioItem.module.css +18 -20
  77. package/Scroller/Scroller.d.ts +12 -0
  78. package/Scroller/Scroller.js +15 -0
  79. package/Scroller/tests/Scroller-specs.js +29 -0
  80. package/Scroller/useThemeScroller.js +22 -2
  81. package/Slider/Slider.d.ts +1 -1
  82. package/Slider/Slider.module.css +539 -300
  83. package/Spinner/Spinner.d.ts +1 -1
  84. package/Spinner/Spinner.module.css +2 -2
  85. package/Steps/Steps.d.ts +1 -1
  86. package/Steps/Steps.js +12 -6
  87. package/Steps/Steps.module.css +16 -2
  88. package/Switch/Switch.module.css +2 -5
  89. package/SwitchItem/SwitchItem.d.ts +1 -1
  90. package/TabLayout/RefocusDecorator.js +1 -1
  91. package/TabLayout/TabGroup.module.css +12 -6
  92. package/TabLayout/TabLayout.js +4 -0
  93. package/ThemeDecorator/ThemeDecorator.d.ts +1 -1
  94. package/ThemeDecorator/ThemeDecorator.module.css +22 -1
  95. package/TooltipDecorator/Tooltip.js +68 -7
  96. package/TooltipDecorator/Tooltip.module.css +40 -23
  97. package/TooltipDecorator/TooltipDecorator.d.ts +52 -0
  98. package/TooltipDecorator/TooltipDecorator.js +42 -0
  99. package/TooltipDecorator/TooltipLabel.js +67 -14
  100. package/TooltipDecorator/tests/TooltipDecorator-specs.js +46 -0
  101. package/TooltipDecorator/useTooltip.js +14 -2
  102. package/VideoPlayer/MediaTitle.module.css +1 -1
  103. package/VirtualList/VirtualList.d.ts +24 -0
  104. package/VirtualList/VirtualList.js +30 -0
  105. package/VirtualList/tests/stickTo-specs.js +115 -0
  106. package/VirtualList/tests/useEvent-specs.js +39 -0
  107. package/VirtualList/useEvent.js +45 -10
  108. package/VirtualList/useThemeVirtualList.js +20 -2
  109. package/WizardPanels/WizardPanels.module.css +1 -1
  110. package/fonts/Limestone_Icons.ttf +0 -0
  111. package/internal/DateComponentPicker/DateComponentPicker.module.css +3 -3
  112. package/internal/Picker/Picker.js +8 -10
  113. package/internal/Picker/Picker.module.css +74 -141
  114. package/package.json +11 -14
  115. package/styles/color-mixins.less +4 -60
  116. package/styles/colors-game.less +5 -5
  117. package/styles/colors.less +9 -10
  118. package/styles/mixins.less +0 -46
  119. package/styles/motion-mixins.less +16 -7
  120. package/styles/motions.less +2 -2
  121. package/styles/variables.less +71 -46
  122. package/useScroll/useScroll.js +3 -1
@@ -34,8 +34,8 @@ Animations properties
34
34
  --lime-bounce-motion-easing-function: var(--lime-default-motion-easing-function);
35
35
  --lime-focus-in-motion-easing-function: var(--lime-EIO-motion-easing-function);
36
36
  --lime-focus-out-motion-easing-function: var(--lime-EO-motion-easing-function);
37
- --lime-press-motion-easing-function: var(--lime-EIO-motion-easing-function);
38
- --lime-release-motion-easing-function: var(--lime-EO-motion-easing-function);
37
+ --lime-press-motion-easing-function: var(--lime-EO-motion-easing-function);
38
+ --lime-release-motion-easing-function: var(--lime-EIO-motion-easing-function);
39
39
  /* ---------------------------------------
40
40
  Keyframes names
41
41
  ------------------------------------------ */
@@ -76,19 +76,16 @@ Keyframes
76
76
  }
77
77
  }
78
78
  /* ---------------------------------------
79
- Motion Variables
80
- ------------------------------------------ */
81
- /* ---------------------------------------
82
79
  Motion Mixins
83
80
  ------------------------------------------ */
84
81
  .slider {
85
82
  position: relative;
86
- margin: 0 1rem;
87
83
  height: 0.25rem;
88
84
  width: 0.25rem;
89
85
  box-sizing: content-box;
90
86
  direction: ltr;
91
87
  touch-action: none;
88
+ margin: 0 1rem;
92
89
  }
93
90
  .slider .progressBar {
94
91
  position: relative;
@@ -100,16 +97,16 @@ Motion Mixins
100
97
  overflow: hidden;
101
98
  }
102
99
  .slider .knob {
103
- --lime-tooltip-offset: 0.375rem;
100
+ --lime-tooltip-offset: 0.5rem;
104
101
  position: absolute;
105
102
  will-change: transform;
106
103
  }
107
104
  .slider .knob::before {
108
105
  content: "";
109
106
  position: absolute;
110
- height: 0.75rem;
111
- width: 0.75rem;
112
- border-radius: 0.375rem;
107
+ height: 1rem;
108
+ width: 1rem;
109
+ border-radius: 0.5rem;
113
110
  border: 0.125rem solid transparent;
114
111
  box-sizing: border-box;
115
112
  will-change: transform;
@@ -147,14 +144,13 @@ Motion Mixins
147
144
  font-weight: var(--primitive-font-weight-regular);
148
145
  line-height: 1.25rem;
149
146
  }
150
- .slider:global(.largeText) .knob::before {
151
- height: 0.75rem;
152
- width: 0.75rem;
153
- border-radius: 0.375rem;
147
+ .slider:global(.largeText) .minMax {
148
+ font-size: var(--primitive-font-size-60);
149
+ line-height: 1.45833rem;
154
150
  }
155
151
  .slider.horizontal {
156
152
  width: auto;
157
- padding: var(--primitive-spacing-24) 0.375rem;
153
+ padding: var(--primitive-spacing-60) 0.5rem;
158
154
  }
159
155
  .slider.horizontal .fill,
160
156
  .slider.horizontal .load {
@@ -170,7 +166,7 @@ Motion Mixins
170
166
  margin-top: var(--primitive-spacing-24);
171
167
  }
172
168
  .slider.vertical {
173
- padding: 0.375rem 0.5rem;
169
+ padding: 0.5rem 0.75rem;
174
170
  min-height: 5rem;
175
171
  display: inline-block;
176
172
  vertical-align: top;
@@ -196,119 +192,157 @@ Motion Mixins
196
192
  flex-direction: column-reverse;
197
193
  margin-left: var(--primitive-spacing-24);
198
194
  }
199
- .slider.vertical:global(.largeText) {
200
- padding: 0.375rem 0.25rem;
195
+ .slider.colorPicker .knob {
196
+ --lime-tooltip-offset: 0.625rem;
197
+ }
198
+ .slider.colorPicker .knob::before {
199
+ height: 1rem;
200
+ width: 1rem;
201
+ border-radius: 0.5rem;
202
+ }
203
+ .slider.colorPicker.horizontal {
204
+ min-height: 1.25rem;
205
+ padding: 0.125rem 0.625rem;
206
+ align-content: center;
207
+ }
208
+ .slider.colorPicker.horizontal .progressBar {
209
+ height: 1rem;
210
+ border-radius: 0.5rem;
211
+ }
212
+ .slider.colorPicker.horizontal .progressBar .bar {
213
+ border-radius: 0.5rem;
214
+ }
215
+ .slider.colorPicker.vertical {
216
+ padding: 0.625rem 0.125rem;
217
+ }
218
+ .slider.colorPicker.vertical .progressBar {
219
+ width: 1rem;
220
+ border-radius: 0.5rem;
221
+ }
222
+ .slider.colorPicker.vertical .progressBar .bar {
223
+ border-radius: 0.5rem;
201
224
  }
202
225
  .slider:global(.neutral) .bar {
203
226
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
204
227
  }
205
228
  .slider:global(.neutral) .fill {
206
- background-color: var(--semantic-color-surface-accent);
229
+ background-color: var(--semantic-color-surface-white);
207
230
  }
208
231
  .slider:global(.neutral) .load {
209
232
  background-color: color(from var(--semantic-color-surface-white) srgb r g b / 0.5);
210
233
  }
211
234
  .slider:global(.neutral) .knob::before {
212
- background-color: var(--semantic-color-surface-default-handle);
235
+ background-color: var(--semantic-color-surface-white);
213
236
  border-color: transparent;
214
237
  }
238
+ :global(.spotlight-input-mouse) .slider:global(.neutral):hover:not([disabled]):not(.colorPicker) .knob::before {
239
+ transform: translate(-50%, -50%) scale(1.33);
240
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
241
+ }
215
242
  :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus,
216
243
  :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus {
217
244
  background-color: transparent;
218
245
  }
219
246
  :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus .fill,
220
247
  :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus .fill {
221
- background-color: var(--semantic-color-surface-accent);
248
+ background-color: var(--semantic-color-surface-white);
222
249
  }
223
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus .knob::before,
224
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus .knob::before {
225
- background-color: var(--semantic-color-surface-default-focused);
250
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker) .knob,
251
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker) .knob {
252
+ --lime-tooltip-offset: 0.665rem;
253
+ }
254
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker) .knob::before,
255
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker) .knob::before {
256
+ background-color: var(--semantic-color-surface-white);
226
257
  border-color: transparent;
227
258
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
228
259
  transform: translate(-50%, -50%) scale(1.33);
229
260
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
230
261
  }
231
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.active .fill,
232
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.active .fill,
233
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.pressed .fill,
234
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.pressed .fill {
235
- background-color: var(--semantic-color-surface-accent);
236
- }
237
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:active .knob::before,
238
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:active .knob::before,
239
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before,
240
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before {
262
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker):active .knob::before,
263
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker):active .knob::before,
264
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
265
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
241
266
  transform: translate(-50%, -50%) scale(1.16);
242
267
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
243
268
  }
244
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.pressed) .knob::before,
245
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.pressed) .knob::before {
269
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before,
270
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before {
246
271
  transform: translate(-50%, -50%) scale(1.33);
247
272
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
248
273
  }
249
- :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus[disabled] .knob::before,
250
- :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus[disabled] .knob::before {
274
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before,
275
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before {
251
276
  transform: translate(-50%, -50%) scale(1);
252
277
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
253
278
  }
279
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.active .fill,
280
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.active .fill,
281
+ :global(.spotlight-input-key) .slider:global(.neutral):global(.spottable):focus.pressed .fill,
282
+ :global(.spotlight-input-mouse) .slider:global(.neutral):global(.spottable):focus.pressed .fill {
283
+ background-color: var(--semantic-color-surface-white);
284
+ }
254
285
  :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active {
255
286
  background-color: transparent;
256
287
  }
257
288
  :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active .fill {
258
- background-color: var(--semantic-color-surface-accent);
289
+ background-color: var(--semantic-color-surface-white);
259
290
  }
260
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active .knob::before {
261
- background-color: var(--semantic-color-surface-default-focused);
291
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.colorPicker) .knob {
292
+ --lime-tooltip-offset: 0.665rem;
293
+ }
294
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.colorPicker) .knob::before {
295
+ background-color: var(--semantic-color-surface-white);
262
296
  border-color: transparent;
263
297
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
264
298
  transform: translate(-50%, -50%) scale(1.33);
265
299
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
266
300
  }
267
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.active .fill,
268
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.pressed .fill {
269
- background-color: var(--semantic-color-surface-accent);
270
- }
271
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:active .knob::before,
272
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.pressed .knob::before {
301
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.colorPicker):active .knob::before,
302
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.colorPicker).pressed .knob::before {
273
303
  transform: translate(-50%, -50%) scale(1.16);
274
304
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
275
305
  }
276
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.pressed) .knob::before {
306
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.colorPicker):not(.pressed) .knob::before {
277
307
  transform: translate(-50%, -50%) scale(1.33);
278
308
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
279
309
  }
280
- :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active[disabled] .knob::before {
310
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active:not(.colorPicker)[disabled] .knob::before {
281
311
  transform: translate(-50%, -50%) scale(1);
282
312
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
283
313
  }
284
- :global(.spotlight-input-touch) .slider:global(.neutral).pressed .fill {
285
- background-color: var(--semantic-color-surface-accent);
314
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.active .fill,
315
+ :global(.spotlight-input-touch) .slider:global(.neutral):global(.spottable):active.pressed .fill {
316
+ background-color: var(--semantic-color-surface-white);
286
317
  }
287
- :global(.spotlight-input-touch) .slider:global(.neutral).pressed .knob::before {
288
- background-color: var(--semantic-color-surface-default-focused);
318
+ :global(.spotlight-input-touch) .slider:global(.neutral).pressed:not(.colorPicker) .fill {
319
+ background-color: var(--semantic-color-surface-white);
320
+ }
321
+ :global(.spotlight-input-touch) .slider:global(.neutral).pressed:not(.colorPicker) .knob::before {
322
+ background-color: var(--semantic-color-surface-white);
289
323
  border-color: transparent;
290
324
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
291
325
  transform: translate(-50%, -50%) scale(1.33);
292
326
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
293
327
  }
294
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus .knob::before,
295
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus .knob::before {
328
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker) .knob::before,
329
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker) .knob::before {
296
330
  box-shadow: none;
297
331
  }
298
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.active .knob::before,
299
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.active .knob::before,
300
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before,
301
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus.pressed .knob::before {
332
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker).active .knob::before,
333
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker).active .knob::before,
334
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
335
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.neutral):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
302
336
  transform: translate(-50%, -50%);
303
337
  }
304
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active .knob::before {
338
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active:not(.colorPicker) .knob::before {
305
339
  box-shadow: none;
306
340
  }
307
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active.active .knob::before,
308
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active.pressed .knob::before {
341
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active:not(.colorPicker).active .knob::before,
342
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral):global(.spottable):active:not(.colorPicker).pressed .knob::before {
309
343
  transform: translate(-50%, -50%);
310
344
  }
311
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral).pressed .knob::before {
345
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.neutral).pressed:not(.colorPicker) .knob::before {
312
346
  box-shadow: none;
313
347
  transform: translate(-50%, -50%);
314
348
  }
@@ -343,6 +377,14 @@ Motion Mixins
343
377
  .slider:global(.neutral).colorPicker .load {
344
378
  background-color: transparent;
345
379
  }
380
+ .slider:global(.neutral).colorPicker .knob::before {
381
+ background-color: var(--semantic-color-surface-default-handle);
382
+ outline: 0.125rem solid var(--semantic-color-surface-white);
383
+ transform: translate(-50%, -50%);
384
+ }
385
+ :global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:hover:not([disabled]) .knob {
386
+ --lime-tooltip-offset: 0.75rem;
387
+ }
346
388
  :global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .bar,
347
389
  :global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .bar,
348
390
  :global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .fill,
@@ -351,17 +393,34 @@ Motion Mixins
351
393
  :global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .load {
352
394
  background-color: transparent;
353
395
  }
396
+ :global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .knob,
397
+ :global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .knob {
398
+ --lime-tooltip-offset: 0.75rem;
399
+ }
354
400
  :global(.spotlight-input-key) .slider:global(.neutral).colorPicker:global(.spottable):focus .knob::before,
355
401
  :global(.spotlight-input-mouse) .slider:global(.neutral).colorPicker:global(.spottable):focus .knob::before {
356
- border-color: var(--semantic-color-surface-white);
402
+ height: 1.25rem;
403
+ width: 1.25rem;
404
+ border-radius: 0.625rem;
405
+ background-color: var(--semantic-color-surface-default-focused);
406
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
407
+ transform: translate(-50%, -50%);
357
408
  }
358
409
  :global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .bar,
359
410
  :global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .fill,
360
411
  :global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .load {
361
412
  background-color: transparent;
362
413
  }
414
+ :global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .knob {
415
+ --lime-tooltip-offset: 0.75rem;
416
+ }
363
417
  :global(.spotlight-input-touch) .slider:global(.neutral).colorPicker:global(.spottable):active .knob::before {
364
- border-color: var(--semantic-color-surface-white);
418
+ height: 1.25rem;
419
+ width: 1.25rem;
420
+ border-radius: 0.625rem;
421
+ background-color: var(--semantic-color-surface-default-focused);
422
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
423
+ transform: translate(-50%, -50%);
365
424
  }
366
425
  .slider:global(.neutral).showAnchor .progressBar::after {
367
426
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
@@ -373,112 +432,123 @@ Motion Mixins
373
432
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
374
433
  }
375
434
  :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .fill {
376
- background-color: var(--semantic-color-surface-accent);
435
+ background-color: var(--semantic-color-surface-white);
377
436
  }
378
437
  :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .load {
379
438
  background-color: color(from var(--semantic-color-surface-white) srgb r g b / 0.5);
380
439
  }
381
440
  :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast) .knob::before {
382
- background-color: var(--semantic-color-surface-default-handle);
441
+ background-color: var(--semantic-color-surface-white);
383
442
  border-color: transparent;
384
443
  }
444
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):hover:not([disabled]):not(.colorPicker) .knob::before {
445
+ transform: translate(-50%, -50%) scale(1.33);
446
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
447
+ }
385
448
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus,
386
449
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus {
387
450
  background-color: transparent;
388
451
  }
389
452
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .fill,
390
453
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .fill {
391
- background-color: var(--semantic-color-surface-accent);
454
+ background-color: var(--semantic-color-surface-white);
392
455
  }
393
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before,
394
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before {
395
- background-color: var(--semantic-color-surface-default-focused);
456
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker) .knob,
457
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker) .knob {
458
+ --lime-tooltip-offset: 0.665rem;
459
+ }
460
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker) .knob::before,
461
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker) .knob::before {
462
+ background-color: var(--semantic-color-surface-white);
396
463
  border-color: transparent;
397
464
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
398
465
  transform: translate(-50%, -50%) scale(1.33);
399
466
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
400
467
  }
401
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
402
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
403
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .fill,
404
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .fill {
405
- background-color: var(--semantic-color-surface-accent);
406
- }
407
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:active .knob::before,
408
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:active .knob::before,
409
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before,
410
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before {
468
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker):active .knob::before,
469
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker):active .knob::before,
470
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
471
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
411
472
  transform: translate(-50%, -50%) scale(1.16);
412
473
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
413
474
  }
414
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.pressed) .knob::before,
415
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.pressed) .knob::before {
475
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before,
476
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before {
416
477
  transform: translate(-50%, -50%) scale(1.33);
417
478
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
418
479
  }
419
- :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus[disabled] .knob::before,
420
- :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus[disabled] .knob::before {
480
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before,
481
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before {
421
482
  transform: translate(-50%, -50%) scale(1);
422
483
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
423
484
  }
485
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
486
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .fill,
487
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .fill,
488
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .fill {
489
+ background-color: var(--semantic-color-surface-white);
490
+ }
424
491
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active {
425
492
  background-color: transparent;
426
493
  }
427
494
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active .fill {
428
- background-color: var(--semantic-color-surface-accent);
495
+ background-color: var(--semantic-color-surface-white);
429
496
  }
430
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active .knob::before {
431
- background-color: var(--semantic-color-surface-default-focused);
497
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker) .knob {
498
+ --lime-tooltip-offset: 0.665rem;
499
+ }
500
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker) .knob::before {
501
+ background-color: var(--semantic-color-surface-white);
432
502
  border-color: transparent;
433
503
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
434
504
  transform: translate(-50%, -50%) scale(1.33);
435
505
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
436
506
  }
437
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .fill,
438
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .fill {
439
- background-color: var(--semantic-color-surface-accent);
440
- }
441
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:active .knob::before,
442
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .knob::before {
507
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker):active .knob::before,
508
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker).pressed .knob::before {
443
509
  transform: translate(-50%, -50%) scale(1.16);
444
510
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
445
511
  }
446
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.pressed) .knob::before {
512
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker):not(.pressed) .knob::before {
447
513
  transform: translate(-50%, -50%) scale(1.33);
448
514
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
449
515
  }
450
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active[disabled] .knob::before {
516
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker)[disabled] .knob::before {
451
517
  transform: translate(-50%, -50%) scale(1);
452
518
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
453
519
  }
454
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .fill {
455
- background-color: var(--semantic-color-surface-accent);
520
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .fill,
521
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .fill {
522
+ background-color: var(--semantic-color-surface-white);
456
523
  }
457
- :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .knob::before {
458
- background-color: var(--semantic-color-surface-default-focused);
524
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed:not(.colorPicker) .fill {
525
+ background-color: var(--semantic-color-surface-white);
526
+ }
527
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed:not(.colorPicker) .knob::before {
528
+ background-color: var(--semantic-color-surface-white);
459
529
  border-color: transparent;
460
530
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
461
531
  transform: translate(-50%, -50%) scale(1.33);
462
532
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
463
533
  }
464
- :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before,
465
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus .knob::before {
534
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker) .knob::before,
535
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker) .knob::before {
466
536
  box-shadow: none;
467
537
  }
468
- :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .knob::before,
469
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.active .knob::before,
470
- :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before,
471
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus.pressed .knob::before {
538
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker).active .knob::before,
539
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker).active .knob::before,
540
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
541
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
472
542
  transform: translate(-50%, -50%);
473
543
  }
474
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active .knob::before {
544
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker) .knob::before {
475
545
  box-shadow: none;
476
546
  }
477
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.active .knob::before,
478
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active.pressed .knob::before {
547
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker).active .knob::before,
548
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast):global(.spottable):active:not(.colorPicker).pressed .knob::before {
479
549
  transform: translate(-50%, -50%);
480
550
  }
481
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed .knob::before {
551
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).pressed:not(.colorPicker) .knob::before {
482
552
  box-shadow: none;
483
553
  transform: translate(-50%, -50%);
484
554
  }
@@ -513,6 +583,14 @@ Motion Mixins
513
583
  :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker .load {
514
584
  background-color: transparent;
515
585
  }
586
+ :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker .knob::before {
587
+ background-color: var(--semantic-color-surface-default-handle);
588
+ outline: 0.125rem solid var(--semantic-color-surface-white);
589
+ transform: translate(-50%, -50%);
590
+ }
591
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:hover:not([disabled]) .knob {
592
+ --lime-tooltip-offset: 0.75rem;
593
+ }
516
594
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .bar,
517
595
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .bar,
518
596
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .fill,
@@ -521,17 +599,34 @@ Motion Mixins
521
599
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .load {
522
600
  background-color: transparent;
523
601
  }
602
+ :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .knob,
603
+ :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .knob {
604
+ --lime-tooltip-offset: 0.75rem;
605
+ }
524
606
  :global(.spotlight-input-key) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .knob::before,
525
607
  :global(.spotlight-input-mouse) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):focus .knob::before {
526
- border-color: var(--semantic-color-surface-white);
608
+ height: 1.25rem;
609
+ width: 1.25rem;
610
+ border-radius: 0.625rem;
611
+ background-color: var(--semantic-color-surface-default-focused);
612
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
613
+ transform: translate(-50%, -50%);
527
614
  }
528
615
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .bar,
529
616
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .fill,
530
617
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .load {
531
618
  background-color: transparent;
532
619
  }
620
+ :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .knob {
621
+ --lime-tooltip-offset: 0.75rem;
622
+ }
533
623
  :global(.spotlight-input-touch) :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).colorPicker:global(.spottable):active .knob::before {
534
- border-color: var(--semantic-color-surface-white);
624
+ height: 1.25rem;
625
+ width: 1.25rem;
626
+ border-radius: 0.625rem;
627
+ background-color: var(--semantic-color-surface-default-focused);
628
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
629
+ transform: translate(-50%, -50%);
535
630
  }
536
631
  :global(.enact-a11y-high-contrast) .slider:global(.neutral):global(.highContrast).showAnchor .progressBar::after {
537
632
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
@@ -543,112 +638,123 @@ Motion Mixins
543
638
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
544
639
  }
545
640
  .slider:global(.light) .fill {
546
- background-color: var(--semantic-color-surface-accent);
641
+ background-color: var(--semantic-color-surface-white);
547
642
  }
548
643
  .slider:global(.light) .load {
549
644
  background-color: color(from var(--semantic-color-surface-white) srgb r g b / 0.5);
550
645
  }
551
646
  .slider:global(.light) .knob::before {
552
- background-color: var(--semantic-color-surface-default-handle);
647
+ background-color: var(--semantic-color-surface-white);
553
648
  border-color: transparent;
554
649
  }
650
+ :global(.spotlight-input-mouse) .slider:global(.light):hover:not([disabled]):not(.colorPicker) .knob::before {
651
+ transform: translate(-50%, -50%) scale(1.33);
652
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
653
+ }
555
654
  :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus,
556
655
  :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus {
557
656
  background-color: transparent;
558
657
  }
559
658
  :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus .fill,
560
659
  :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus .fill {
561
- background-color: var(--semantic-color-surface-accent);
660
+ background-color: var(--semantic-color-surface-white);
562
661
  }
563
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus .knob::before,
564
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus .knob::before {
565
- background-color: var(--semantic-color-surface-default-focused);
662
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.colorPicker) .knob,
663
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.colorPicker) .knob {
664
+ --lime-tooltip-offset: 0.665rem;
665
+ }
666
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.colorPicker) .knob::before,
667
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.colorPicker) .knob::before {
668
+ background-color: var(--semantic-color-surface-white);
566
669
  border-color: transparent;
567
670
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
568
671
  transform: translate(-50%, -50%) scale(1.33);
569
672
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
570
673
  }
571
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.active .fill,
572
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.active .fill,
573
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.pressed .fill,
574
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .fill {
575
- background-color: var(--semantic-color-surface-accent);
576
- }
577
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:active .knob::before,
578
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:active .knob::before,
579
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.pressed .knob::before,
580
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .knob::before {
674
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.colorPicker):active .knob::before,
675
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.colorPicker):active .knob::before,
676
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
677
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
581
678
  transform: translate(-50%, -50%) scale(1.16);
582
679
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
583
680
  }
584
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.pressed) .knob::before,
585
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.pressed) .knob::before {
681
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before,
682
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before {
586
683
  transform: translate(-50%, -50%) scale(1.33);
587
684
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
588
685
  }
589
- :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus[disabled] .knob::before,
590
- :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus[disabled] .knob::before {
686
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before,
687
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before {
591
688
  transform: translate(-50%, -50%) scale(1);
592
689
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
593
690
  }
691
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.active .fill,
692
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.active .fill,
693
+ :global(.spotlight-input-key) .slider:global(.light):global(.spottable):focus.pressed .fill,
694
+ :global(.spotlight-input-mouse) .slider:global(.light):global(.spottable):focus.pressed .fill {
695
+ background-color: var(--semantic-color-surface-white);
696
+ }
594
697
  :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active {
595
698
  background-color: transparent;
596
699
  }
597
700
  :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active .fill {
598
- background-color: var(--semantic-color-surface-accent);
701
+ background-color: var(--semantic-color-surface-white);
599
702
  }
600
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active .knob::before {
601
- background-color: var(--semantic-color-surface-default-focused);
703
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.colorPicker) .knob {
704
+ --lime-tooltip-offset: 0.665rem;
705
+ }
706
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.colorPicker) .knob::before {
707
+ background-color: var(--semantic-color-surface-white);
602
708
  border-color: transparent;
603
709
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
604
710
  transform: translate(-50%, -50%) scale(1.33);
605
711
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
606
712
  }
607
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.active .fill,
608
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .fill {
609
- background-color: var(--semantic-color-surface-accent);
610
- }
611
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:active .knob::before,
612
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .knob::before {
713
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.colorPicker):active .knob::before,
714
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.colorPicker).pressed .knob::before {
613
715
  transform: translate(-50%, -50%) scale(1.16);
614
716
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
615
717
  }
616
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.pressed) .knob::before {
718
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.colorPicker):not(.pressed) .knob::before {
617
719
  transform: translate(-50%, -50%) scale(1.33);
618
720
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
619
721
  }
620
- :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active[disabled] .knob::before {
722
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active:not(.colorPicker)[disabled] .knob::before {
621
723
  transform: translate(-50%, -50%) scale(1);
622
724
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
623
725
  }
624
- :global(.spotlight-input-touch) .slider:global(.light).pressed .fill {
625
- background-color: var(--semantic-color-surface-accent);
726
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.active .fill,
727
+ :global(.spotlight-input-touch) .slider:global(.light):global(.spottable):active.pressed .fill {
728
+ background-color: var(--semantic-color-surface-white);
626
729
  }
627
- :global(.spotlight-input-touch) .slider:global(.light).pressed .knob::before {
628
- background-color: var(--semantic-color-surface-default-focused);
730
+ :global(.spotlight-input-touch) .slider:global(.light).pressed:not(.colorPicker) .fill {
731
+ background-color: var(--semantic-color-surface-white);
732
+ }
733
+ :global(.spotlight-input-touch) .slider:global(.light).pressed:not(.colorPicker) .knob::before {
734
+ background-color: var(--semantic-color-surface-white);
629
735
  border-color: transparent;
630
736
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
631
737
  transform: translate(-50%, -50%) scale(1.33);
632
738
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
633
739
  }
634
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus .knob::before,
635
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus .knob::before {
740
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus:not(.colorPicker) .knob::before,
741
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus:not(.colorPicker) .knob::before {
636
742
  box-shadow: none;
637
743
  }
638
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.active .knob::before,
639
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.active .knob::before,
640
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.pressed .knob::before,
641
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus.pressed .knob::before {
744
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus:not(.colorPicker).active .knob::before,
745
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus:not(.colorPicker).active .knob::before,
746
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.light):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
747
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.light):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
642
748
  transform: translate(-50%, -50%);
643
749
  }
644
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active .knob::before {
750
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active:not(.colorPicker) .knob::before {
645
751
  box-shadow: none;
646
752
  }
647
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active.active .knob::before,
648
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active.pressed .knob::before {
753
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active:not(.colorPicker).active .knob::before,
754
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light):global(.spottable):active:not(.colorPicker).pressed .knob::before {
649
755
  transform: translate(-50%, -50%);
650
756
  }
651
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light).pressed .knob::before {
757
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.light).pressed:not(.colorPicker) .knob::before {
652
758
  box-shadow: none;
653
759
  transform: translate(-50%, -50%);
654
760
  }
@@ -683,6 +789,14 @@ Motion Mixins
683
789
  .slider:global(.light).colorPicker .load {
684
790
  background-color: transparent;
685
791
  }
792
+ .slider:global(.light).colorPicker .knob::before {
793
+ background-color: var(--semantic-color-surface-default-handle);
794
+ outline: 0.125rem solid var(--semantic-color-surface-white);
795
+ transform: translate(-50%, -50%);
796
+ }
797
+ :global(.spotlight-input-mouse) .slider:global(.light).colorPicker:hover:not([disabled]) .knob {
798
+ --lime-tooltip-offset: 0.75rem;
799
+ }
686
800
  :global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .bar,
687
801
  :global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .bar,
688
802
  :global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .fill,
@@ -691,17 +805,34 @@ Motion Mixins
691
805
  :global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .load {
692
806
  background-color: transparent;
693
807
  }
808
+ :global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .knob,
809
+ :global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .knob {
810
+ --lime-tooltip-offset: 0.75rem;
811
+ }
694
812
  :global(.spotlight-input-key) .slider:global(.light).colorPicker:global(.spottable):focus .knob::before,
695
813
  :global(.spotlight-input-mouse) .slider:global(.light).colorPicker:global(.spottable):focus .knob::before {
696
- border-color: var(--semantic-color-surface-white);
814
+ height: 1.25rem;
815
+ width: 1.25rem;
816
+ border-radius: 0.625rem;
817
+ background-color: var(--semantic-color-surface-default-focused);
818
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
819
+ transform: translate(-50%, -50%);
697
820
  }
698
821
  :global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .bar,
699
822
  :global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .fill,
700
823
  :global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .load {
701
824
  background-color: transparent;
702
825
  }
826
+ :global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .knob {
827
+ --lime-tooltip-offset: 0.75rem;
828
+ }
703
829
  :global(.spotlight-input-touch) .slider:global(.light).colorPicker:global(.spottable):active .knob::before {
704
- border-color: var(--semantic-color-surface-white);
830
+ height: 1.25rem;
831
+ width: 1.25rem;
832
+ border-radius: 0.625rem;
833
+ background-color: var(--semantic-color-surface-default-focused);
834
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
835
+ transform: translate(-50%, -50%);
705
836
  }
706
837
  .slider:global(.light).showAnchor .progressBar::after {
707
838
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
@@ -718,112 +849,123 @@ Motion Mixins
718
849
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
719
850
  }
720
851
  .slider:global(.game) .fill {
721
- background-color: var(--semantic-color-surface-accent);
852
+ background-color: var(--semantic-color-surface-white);
722
853
  }
723
854
  .slider:global(.game) .load {
724
855
  background-color: color(from var(--semantic-color-surface-white) srgb r g b / 0.5);
725
856
  }
726
857
  .slider:global(.game) .knob::before {
727
- background-color: var(--semantic-color-surface-default-handle);
858
+ background-color: var(--semantic-color-surface-white);
728
859
  border-color: transparent;
729
860
  }
861
+ :global(.spotlight-input-mouse) .slider:global(.game):hover:not([disabled]):not(.colorPicker) .knob::before {
862
+ transform: translate(-50%, -50%) scale(1.33);
863
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
864
+ }
730
865
  :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus,
731
866
  :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus {
732
867
  background-color: transparent;
733
868
  }
734
869
  :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus .fill,
735
870
  :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus .fill {
736
- background-color: var(--semantic-color-surface-accent);
871
+ background-color: var(--semantic-color-surface-white);
737
872
  }
738
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus .knob::before,
739
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus .knob::before {
740
- background-color: var(--semantic-color-surface-default-focused);
873
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob,
874
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob {
875
+ --lime-tooltip-offset: 0.665rem;
876
+ }
877
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before,
878
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before {
879
+ background-color: var(--semantic-color-surface-white);
741
880
  border-color: transparent;
742
881
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
743
882
  transform: translate(-50%, -50%) scale(1.33);
744
883
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
745
884
  }
746
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.active .fill,
747
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.active .fill,
748
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.pressed .fill,
749
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .fill {
750
- background-color: var(--semantic-color-surface-accent);
751
- }
752
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:active .knob::before,
753
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:active .knob::before,
754
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
755
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
885
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.colorPicker):active .knob::before,
886
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.colorPicker):active .knob::before,
887
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
888
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
756
889
  transform: translate(-50%, -50%) scale(1.16);
757
890
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
758
891
  }
759
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
760
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
892
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before,
893
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before {
761
894
  transform: translate(-50%, -50%) scale(1.33);
762
895
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
763
896
  }
764
- :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
765
- :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
897
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before,
898
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before {
766
899
  transform: translate(-50%, -50%) scale(1);
767
900
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
768
901
  }
902
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.active .fill,
903
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.active .fill,
904
+ :global(.spotlight-input-key) .slider:global(.game):global(.spottable):focus.pressed .fill,
905
+ :global(.spotlight-input-mouse) .slider:global(.game):global(.spottable):focus.pressed .fill {
906
+ background-color: var(--semantic-color-surface-white);
907
+ }
769
908
  :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active {
770
909
  background-color: transparent;
771
910
  }
772
911
  :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active .fill {
773
- background-color: var(--semantic-color-surface-accent);
912
+ background-color: var(--semantic-color-surface-white);
774
913
  }
775
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active .knob::before {
776
- background-color: var(--semantic-color-surface-default-focused);
914
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob {
915
+ --lime-tooltip-offset: 0.665rem;
916
+ }
917
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob::before {
918
+ background-color: var(--semantic-color-surface-white);
777
919
  border-color: transparent;
778
920
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
779
921
  transform: translate(-50%, -50%) scale(1.33);
780
922
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
781
923
  }
782
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.active .fill,
783
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .fill {
784
- background-color: var(--semantic-color-surface-accent);
785
- }
786
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:active .knob::before,
787
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .knob::before {
924
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.colorPicker):active .knob::before,
925
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.colorPicker).pressed .knob::before {
788
926
  transform: translate(-50%, -50%) scale(1.16);
789
927
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
790
928
  }
791
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
929
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.colorPicker):not(.pressed) .knob::before {
792
930
  transform: translate(-50%, -50%) scale(1.33);
793
931
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
794
932
  }
795
- :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
933
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active:not(.colorPicker)[disabled] .knob::before {
796
934
  transform: translate(-50%, -50%) scale(1);
797
935
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
798
936
  }
799
- :global(.spotlight-input-touch) .slider:global(.game).pressed .fill {
800
- background-color: var(--semantic-color-surface-accent);
937
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.active .fill,
938
+ :global(.spotlight-input-touch) .slider:global(.game):global(.spottable):active.pressed .fill {
939
+ background-color: var(--semantic-color-surface-white);
940
+ }
941
+ :global(.spotlight-input-touch) .slider:global(.game).pressed:not(.colorPicker) .fill {
942
+ background-color: var(--semantic-color-surface-white);
801
943
  }
802
- :global(.spotlight-input-touch) .slider:global(.game).pressed .knob::before {
803
- background-color: var(--semantic-color-surface-default-focused);
944
+ :global(.spotlight-input-touch) .slider:global(.game).pressed:not(.colorPicker) .knob::before {
945
+ background-color: var(--semantic-color-surface-white);
804
946
  border-color: transparent;
805
947
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
806
948
  transform: translate(-50%, -50%) scale(1.33);
807
949
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
808
950
  }
809
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus .knob::before,
810
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus .knob::before {
951
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before,
952
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before {
811
953
  box-shadow: none;
812
954
  }
813
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.active .knob::before,
814
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.active .knob::before,
815
- :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
816
- :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
955
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus:not(.colorPicker).active .knob::before,
956
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus:not(.colorPicker).active .knob::before,
957
+ :global(.spotlight-input-key) :global(.noAnimation) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
958
+ :global(.spotlight-input-mouse) :global(.noAnimation) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
817
959
  transform: translate(-50%, -50%);
818
960
  }
819
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active .knob::before {
961
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob::before {
820
962
  box-shadow: none;
821
963
  }
822
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active.active .knob::before,
823
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active.pressed .knob::before {
964
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active:not(.colorPicker).active .knob::before,
965
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game):global(.spottable):active:not(.colorPicker).pressed .knob::before {
824
966
  transform: translate(-50%, -50%);
825
967
  }
826
- :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game).pressed .knob::before {
968
+ :global(.spotlight-input-touch) :global(.noAnimation) .slider:global(.game).pressed:not(.colorPicker) .knob::before {
827
969
  box-shadow: none;
828
970
  transform: translate(-50%, -50%);
829
971
  }
@@ -858,6 +1000,14 @@ Motion Mixins
858
1000
  .slider:global(.game).colorPicker .load {
859
1001
  background-color: transparent;
860
1002
  }
1003
+ .slider:global(.game).colorPicker .knob::before {
1004
+ background-color: var(--semantic-color-surface-default-handle);
1005
+ outline: 0.125rem solid var(--semantic-color-surface-white);
1006
+ transform: translate(-50%, -50%);
1007
+ }
1008
+ :global(.spotlight-input-mouse) .slider:global(.game).colorPicker:hover:not([disabled]) .knob {
1009
+ --lime-tooltip-offset: 0.75rem;
1010
+ }
861
1011
  :global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
862
1012
  :global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
863
1013
  :global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
@@ -866,17 +1016,34 @@ Motion Mixins
866
1016
  :global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .load {
867
1017
  background-color: transparent;
868
1018
  }
1019
+ :global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .knob,
1020
+ :global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .knob {
1021
+ --lime-tooltip-offset: 0.75rem;
1022
+ }
869
1023
  :global(.spotlight-input-key) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before,
870
1024
  :global(.spotlight-input-mouse) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before {
871
- border-color: var(--semantic-color-surface-white);
1025
+ height: 1.25rem;
1026
+ width: 1.25rem;
1027
+ border-radius: 0.625rem;
1028
+ background-color: var(--semantic-color-surface-default-focused);
1029
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1030
+ transform: translate(-50%, -50%);
872
1031
  }
873
1032
  :global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .bar,
874
1033
  :global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .fill,
875
1034
  :global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .load {
876
1035
  background-color: transparent;
877
1036
  }
1037
+ :global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .knob {
1038
+ --lime-tooltip-offset: 0.75rem;
1039
+ }
878
1040
  :global(.spotlight-input-touch) .slider:global(.game).colorPicker:global(.spottable):active .knob::before {
879
- border-color: var(--semantic-color-surface-white);
1041
+ height: 1.25rem;
1042
+ width: 1.25rem;
1043
+ border-radius: 0.625rem;
1044
+ background-color: var(--semantic-color-surface-default-focused);
1045
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1046
+ transform: translate(-50%, -50%);
880
1047
  }
881
1048
  .slider:global(.game).showAnchor .progressBar::after {
882
1049
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
@@ -892,112 +1059,123 @@ Motion Mixins
892
1059
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
893
1060
  }
894
1061
  :global(.green) .slider:global(.game) .fill {
895
- background-color: var(--semantic-color-surface-accent);
1062
+ background-color: var(--semantic-color-surface-white);
896
1063
  }
897
1064
  :global(.green) .slider:global(.game) .load {
898
1065
  background-color: color(from var(--semantic-color-surface-white) srgb r g b / 0.5);
899
1066
  }
900
1067
  :global(.green) .slider:global(.game) .knob::before {
901
- background-color: var(--semantic-color-surface-default-handle);
1068
+ background-color: var(--semantic-color-surface-white);
902
1069
  border-color: transparent;
903
1070
  }
1071
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):hover:not([disabled]):not(.colorPicker) .knob::before {
1072
+ transform: translate(-50%, -50%) scale(1.33);
1073
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1074
+ }
904
1075
  :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus,
905
1076
  :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus {
906
1077
  background-color: transparent;
907
1078
  }
908
1079
  :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus .fill,
909
1080
  :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus .fill {
910
- background-color: var(--semantic-color-surface-accent);
1081
+ background-color: var(--semantic-color-surface-white);
911
1082
  }
912
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before,
913
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before {
914
- background-color: var(--semantic-color-surface-default-focused);
1083
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob,
1084
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob {
1085
+ --lime-tooltip-offset: 0.665rem;
1086
+ }
1087
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before,
1088
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before {
1089
+ background-color: var(--semantic-color-surface-white);
915
1090
  border-color: transparent;
916
1091
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
917
1092
  transform: translate(-50%, -50%) scale(1.33);
918
1093
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
919
1094
  }
920
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
921
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
922
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .fill,
923
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .fill {
924
- background-color: var(--semantic-color-surface-accent);
925
- }
926
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:active .knob::before,
927
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:active .knob::before,
928
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
929
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
1095
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker):active .knob::before,
1096
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker):active .knob::before,
1097
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
1098
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
930
1099
  transform: translate(-50%, -50%) scale(1.16);
931
1100
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
932
1101
  }
933
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
934
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
1102
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before,
1103
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before {
935
1104
  transform: translate(-50%, -50%) scale(1.33);
936
1105
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
937
1106
  }
938
- :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
939
- :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
1107
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before,
1108
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before {
940
1109
  transform: translate(-50%, -50%) scale(1);
941
1110
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
942
1111
  }
1112
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
1113
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.active .fill,
1114
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .fill,
1115
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .fill {
1116
+ background-color: var(--semantic-color-surface-white);
1117
+ }
943
1118
  :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active {
944
1119
  background-color: transparent;
945
1120
  }
946
1121
  :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active .fill {
947
- background-color: var(--semantic-color-surface-accent);
1122
+ background-color: var(--semantic-color-surface-white);
948
1123
  }
949
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active .knob::before {
950
- background-color: var(--semantic-color-surface-default-focused);
1124
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob {
1125
+ --lime-tooltip-offset: 0.665rem;
1126
+ }
1127
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob::before {
1128
+ background-color: var(--semantic-color-surface-white);
951
1129
  border-color: transparent;
952
1130
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
953
1131
  transform: translate(-50%, -50%) scale(1.33);
954
1132
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
955
1133
  }
956
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.active .fill,
957
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .fill {
958
- background-color: var(--semantic-color-surface-accent);
959
- }
960
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:active .knob::before,
961
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .knob::before {
1134
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker):active .knob::before,
1135
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker).pressed .knob::before {
962
1136
  transform: translate(-50%, -50%) scale(1.16);
963
1137
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
964
1138
  }
965
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
1139
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker):not(.pressed) .knob::before {
966
1140
  transform: translate(-50%, -50%) scale(1.33);
967
1141
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
968
1142
  }
969
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
1143
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker)[disabled] .knob::before {
970
1144
  transform: translate(-50%, -50%) scale(1);
971
1145
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
972
1146
  }
973
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game).pressed .fill {
974
- background-color: var(--semantic-color-surface-accent);
1147
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.active .fill,
1148
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game):global(.spottable):active.pressed .fill {
1149
+ background-color: var(--semantic-color-surface-white);
975
1150
  }
976
- :global(.spotlight-input-touch) :global(.green) .slider:global(.game).pressed .knob::before {
977
- background-color: var(--semantic-color-surface-default-focused);
1151
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game).pressed:not(.colorPicker) .fill {
1152
+ background-color: var(--semantic-color-surface-white);
1153
+ }
1154
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game).pressed:not(.colorPicker) .knob::before {
1155
+ background-color: var(--semantic-color-surface-white);
978
1156
  border-color: transparent;
979
1157
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
980
1158
  transform: translate(-50%, -50%) scale(1.33);
981
1159
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
982
1160
  }
983
- :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before,
984
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus .knob::before {
1161
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before,
1162
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before {
985
1163
  box-shadow: none;
986
1164
  }
987
- :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.active .knob::before,
988
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.active .knob::before,
989
- :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
990
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
1165
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker).active .knob::before,
1166
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker).active .knob::before,
1167
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
1168
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
991
1169
  transform: translate(-50%, -50%);
992
1170
  }
993
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active .knob::before {
1171
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob::before {
994
1172
  box-shadow: none;
995
1173
  }
996
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active.active .knob::before,
997
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active.pressed .knob::before {
1174
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker).active .knob::before,
1175
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game):global(.spottable):active:not(.colorPicker).pressed .knob::before {
998
1176
  transform: translate(-50%, -50%);
999
1177
  }
1000
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game).pressed .knob::before {
1178
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.green) .slider:global(.game).pressed:not(.colorPicker) .knob::before {
1001
1179
  box-shadow: none;
1002
1180
  transform: translate(-50%, -50%);
1003
1181
  }
@@ -1032,6 +1210,14 @@ Motion Mixins
1032
1210
  :global(.green) .slider:global(.game).colorPicker .load {
1033
1211
  background-color: transparent;
1034
1212
  }
1213
+ :global(.green) .slider:global(.game).colorPicker .knob::before {
1214
+ background-color: var(--semantic-color-surface-default-handle);
1215
+ outline: 0.125rem solid var(--semantic-color-surface-white);
1216
+ transform: translate(-50%, -50%);
1217
+ }
1218
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:hover:not([disabled]) .knob {
1219
+ --lime-tooltip-offset: 0.75rem;
1220
+ }
1035
1221
  :global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
1036
1222
  :global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
1037
1223
  :global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
@@ -1040,17 +1226,34 @@ Motion Mixins
1040
1226
  :global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .load {
1041
1227
  background-color: transparent;
1042
1228
  }
1229
+ :global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .knob,
1230
+ :global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .knob {
1231
+ --lime-tooltip-offset: 0.75rem;
1232
+ }
1043
1233
  :global(.spotlight-input-key) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before,
1044
1234
  :global(.spotlight-input-mouse) :global(.green) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before {
1045
- border-color: var(--semantic-color-surface-white);
1235
+ height: 1.25rem;
1236
+ width: 1.25rem;
1237
+ border-radius: 0.625rem;
1238
+ background-color: var(--semantic-color-surface-default-focused);
1239
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1240
+ transform: translate(-50%, -50%);
1046
1241
  }
1047
1242
  :global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .bar,
1048
1243
  :global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .fill,
1049
1244
  :global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .load {
1050
1245
  background-color: transparent;
1051
1246
  }
1247
+ :global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .knob {
1248
+ --lime-tooltip-offset: 0.75rem;
1249
+ }
1052
1250
  :global(.spotlight-input-touch) :global(.green) .slider:global(.game).colorPicker:global(.spottable):active .knob::before {
1053
- border-color: var(--semantic-color-surface-white);
1251
+ height: 1.25rem;
1252
+ width: 1.25rem;
1253
+ border-radius: 0.625rem;
1254
+ background-color: var(--semantic-color-surface-default-focused);
1255
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1256
+ transform: translate(-50%, -50%);
1054
1257
  }
1055
1258
  :global(.green) .slider:global(.game).showAnchor .progressBar::after {
1056
1259
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
@@ -1066,112 +1269,123 @@ Motion Mixins
1066
1269
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);
1067
1270
  }
1068
1271
  :global(.orange) .slider:global(.game) .fill {
1069
- background-color: var(--semantic-color-surface-accent);
1272
+ background-color: var(--semantic-color-surface-white);
1070
1273
  }
1071
1274
  :global(.orange) .slider:global(.game) .load {
1072
1275
  background-color: color(from var(--semantic-color-surface-white) srgb r g b / 0.5);
1073
1276
  }
1074
1277
  :global(.orange) .slider:global(.game) .knob::before {
1075
- background-color: var(--semantic-color-surface-default-handle);
1278
+ background-color: var(--semantic-color-surface-white);
1076
1279
  border-color: transparent;
1077
1280
  }
1281
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):hover:not([disabled]):not(.colorPicker) .knob::before {
1282
+ transform: translate(-50%, -50%) scale(1.33);
1283
+ transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1284
+ }
1078
1285
  :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus,
1079
1286
  :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus {
1080
1287
  background-color: transparent;
1081
1288
  }
1082
1289
  :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus .fill,
1083
1290
  :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus .fill {
1084
- background-color: var(--semantic-color-surface-accent);
1291
+ background-color: var(--semantic-color-surface-white);
1085
1292
  }
1086
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before,
1087
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before {
1088
- background-color: var(--semantic-color-surface-default-focused);
1293
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob,
1294
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob {
1295
+ --lime-tooltip-offset: 0.665rem;
1296
+ }
1297
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before,
1298
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before {
1299
+ background-color: var(--semantic-color-surface-white);
1089
1300
  border-color: transparent;
1090
1301
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1091
1302
  transform: translate(-50%, -50%) scale(1.33);
1092
1303
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1093
1304
  }
1094
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
1095
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
1096
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .fill,
1097
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .fill {
1098
- background-color: var(--semantic-color-surface-accent);
1099
- }
1100
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:active .knob::before,
1101
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:active .knob::before,
1102
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
1103
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
1305
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker):active .knob::before,
1306
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker):active .knob::before,
1307
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
1308
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
1104
1309
  transform: translate(-50%, -50%) scale(1.16);
1105
1310
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
1106
1311
  }
1107
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before,
1108
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.pressed) .knob::before {
1312
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before,
1313
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker):not(.pressed) .knob::before {
1109
1314
  transform: translate(-50%, -50%) scale(1.33);
1110
1315
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
1111
1316
  }
1112
- :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus[disabled] .knob::before,
1113
- :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus[disabled] .knob::before {
1317
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before,
1318
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker)[disabled] .knob::before {
1114
1319
  transform: translate(-50%, -50%) scale(1);
1115
1320
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
1116
1321
  }
1322
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
1323
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.active .fill,
1324
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .fill,
1325
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .fill {
1326
+ background-color: var(--semantic-color-surface-white);
1327
+ }
1117
1328
  :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active {
1118
1329
  background-color: transparent;
1119
1330
  }
1120
1331
  :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active .fill {
1121
- background-color: var(--semantic-color-surface-accent);
1332
+ background-color: var(--semantic-color-surface-white);
1122
1333
  }
1123
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active .knob::before {
1124
- background-color: var(--semantic-color-surface-default-focused);
1334
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob {
1335
+ --lime-tooltip-offset: 0.665rem;
1336
+ }
1337
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob::before {
1338
+ background-color: var(--semantic-color-surface-white);
1125
1339
  border-color: transparent;
1126
1340
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1127
1341
  transform: translate(-50%, -50%) scale(1.33);
1128
1342
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1129
1343
  }
1130
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.active .fill,
1131
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .fill {
1132
- background-color: var(--semantic-color-surface-accent);
1133
- }
1134
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:active .knob::before,
1135
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .knob::before {
1344
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker):active .knob::before,
1345
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker).pressed .knob::before {
1136
1346
  transform: translate(-50%, -50%) scale(1.16);
1137
1347
  transition: transform var(--lime-press-motion-duration) var(--lime-press-motion-easing-function);
1138
1348
  }
1139
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.pressed) .knob::before {
1349
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker):not(.pressed) .knob::before {
1140
1350
  transform: translate(-50%, -50%) scale(1.33);
1141
1351
  transition: transform var(--lime-release-motion-duration) var(--lime-release-motion-easing-function);
1142
1352
  }
1143
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active[disabled] .knob::before {
1353
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker)[disabled] .knob::before {
1144
1354
  transform: translate(-50%, -50%) scale(1);
1145
1355
  transition: transform var(--lime-focus-out-motion-duration) var(--lime-focus-out-motion-easing-function);
1146
1356
  }
1147
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).pressed .fill {
1148
- background-color: var(--semantic-color-surface-accent);
1357
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.active .fill,
1358
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .fill {
1359
+ background-color: var(--semantic-color-surface-white);
1149
1360
  }
1150
- :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).pressed .knob::before {
1151
- background-color: var(--semantic-color-surface-default-focused);
1361
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).pressed:not(.colorPicker) .fill {
1362
+ background-color: var(--semantic-color-surface-white);
1363
+ }
1364
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).pressed:not(.colorPicker) .knob::before {
1365
+ background-color: var(--semantic-color-surface-white);
1152
1366
  border-color: transparent;
1153
1367
  box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1154
1368
  transform: translate(-50%, -50%) scale(1.33);
1155
1369
  transition: transform var(--lime-focus-in-motion-duration) var(--lime-focus-in-motion-easing-function);
1156
1370
  }
1157
- :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before,
1158
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus .knob::before {
1371
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before,
1372
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker) .knob::before {
1159
1373
  box-shadow: none;
1160
1374
  }
1161
- :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.active .knob::before,
1162
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.active .knob::before,
1163
- :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before,
1164
- :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus.pressed .knob::before {
1375
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker).active .knob::before,
1376
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker).active .knob::before,
1377
+ :global(.spotlight-input-key) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before,
1378
+ :global(.spotlight-input-mouse) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):focus:not(.colorPicker).pressed .knob::before {
1165
1379
  transform: translate(-50%, -50%);
1166
1380
  }
1167
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active .knob::before {
1381
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker) .knob::before {
1168
1382
  box-shadow: none;
1169
1383
  }
1170
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active.active .knob::before,
1171
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active.pressed .knob::before {
1384
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker).active .knob::before,
1385
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game):global(.spottable):active:not(.colorPicker).pressed .knob::before {
1172
1386
  transform: translate(-50%, -50%);
1173
1387
  }
1174
- :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game).pressed .knob::before {
1388
+ :global(.spotlight-input-touch) :global(.noAnimation) :global(.orange) .slider:global(.game).pressed:not(.colorPicker) .knob::before {
1175
1389
  box-shadow: none;
1176
1390
  transform: translate(-50%, -50%);
1177
1391
  }
@@ -1206,6 +1420,14 @@ Motion Mixins
1206
1420
  :global(.orange) .slider:global(.game).colorPicker .load {
1207
1421
  background-color: transparent;
1208
1422
  }
1423
+ :global(.orange) .slider:global(.game).colorPicker .knob::before {
1424
+ background-color: var(--semantic-color-surface-default-handle);
1425
+ outline: 0.125rem solid var(--semantic-color-surface-white);
1426
+ transform: translate(-50%, -50%);
1427
+ }
1428
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:hover:not([disabled]) .knob {
1429
+ --lime-tooltip-offset: 0.75rem;
1430
+ }
1209
1431
  :global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
1210
1432
  :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .bar,
1211
1433
  :global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .fill,
@@ -1214,17 +1436,34 @@ Motion Mixins
1214
1436
  :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .load {
1215
1437
  background-color: transparent;
1216
1438
  }
1439
+ :global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .knob,
1440
+ :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .knob {
1441
+ --lime-tooltip-offset: 0.75rem;
1442
+ }
1217
1443
  :global(.spotlight-input-key) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before,
1218
1444
  :global(.spotlight-input-mouse) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):focus .knob::before {
1219
- border-color: var(--semantic-color-surface-white);
1445
+ height: 1.25rem;
1446
+ width: 1.25rem;
1447
+ border-radius: 0.625rem;
1448
+ background-color: var(--semantic-color-surface-default-focused);
1449
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1450
+ transform: translate(-50%, -50%);
1220
1451
  }
1221
1452
  :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .bar,
1222
1453
  :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .fill,
1223
1454
  :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .load {
1224
1455
  background-color: transparent;
1225
1456
  }
1457
+ :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .knob {
1458
+ --lime-tooltip-offset: 0.75rem;
1459
+ }
1226
1460
  :global(.spotlight-input-touch) :global(.orange) .slider:global(.game).colorPicker:global(.spottable):active .knob::before {
1227
- border-color: var(--semantic-color-surface-white);
1461
+ height: 1.25rem;
1462
+ width: 1.25rem;
1463
+ border-radius: 0.625rem;
1464
+ background-color: var(--semantic-color-surface-default-focused);
1465
+ box-shadow: 0 0.5rem 0.75rem color(from var(--semantic-color-on-background-black) srgb r g b / 0.35);
1466
+ transform: translate(-50%, -50%);
1228
1467
  }
1229
1468
  :global(.orange) .slider:global(.game).showAnchor .progressBar::after {
1230
1469
  background-color: color(from var(--semantic-color-surface-default-track) srgb r g b / 0.7);