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