@ioai/lerobot-studio 1.0.1 → 1.0.3

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.
@@ -1854,7 +1854,17 @@
1854
1854
  background-color: var(--card);
1855
1855
  }
1856
1856
 
1857
- .lerobot-root .bg-destructive, .lerobot-root .bg-destructive\/10 {
1857
+ .lerobot-root .bg-destructive, .lerobot-root .bg-destructive\/5 {
1858
+ background-color: var(--destructive);
1859
+ }
1860
+
1861
+ @supports (color: color-mix(in lab, red, red)) {
1862
+ .lerobot-root .bg-destructive\/5 {
1863
+ background-color: color-mix(in oklab, var(--destructive) 5%, transparent);
1864
+ }
1865
+ }
1866
+
1867
+ .lerobot-root .bg-destructive\/10 {
1858
1868
  background-color: var(--destructive);
1859
1869
  }
1860
1870
 
@@ -2010,10 +2020,6 @@
2010
2020
  background-color: #0000;
2011
2021
  }
2012
2022
 
2013
- .lerobot-root .bg-white {
2014
- background-color: var(--color-white);
2015
- }
2016
-
2017
2023
  .lerobot-root .fill-current {
2018
2024
  fill: currentColor;
2019
2025
  }
@@ -8170,8 +8176,8 @@
8170
8176
  }
8171
8177
 
8172
8178
  .lerobot-root .chart-uplot .u-select {
8173
- background: hsl(var(--primary) / .08);
8174
- border: 1px solid hsl(var(--primary) / .25);
8179
+ background: color-mix(in oklch, var(--primary) 8%, transparent);
8180
+ border: 1px solid color-mix(in oklch, var(--primary) 25%, transparent);
8175
8181
  }
8176
8182
 
8177
8183
  .lerobot-root .chart-uplot .uplot canvas {
@@ -8180,7 +8186,7 @@
8180
8186
 
8181
8187
  .lerobot-root .chart-tooltip {
8182
8188
  scrollbar-width: thin;
8183
- scrollbar-color: hsl(var(--muted-foreground) / .55) transparent;
8189
+ scrollbar-color: color-mix(in oklch, var(--muted-foreground) 55%, transparent) transparent;
8184
8190
  }
8185
8191
 
8186
8192
  .lerobot-root .chart-tooltip::-webkit-scrollbar {
@@ -8192,10 +8198,10 @@
8192
8198
  }
8193
8199
 
8194
8200
  .lerobot-root .chart-tooltip::-webkit-scrollbar-thumb {
8195
- background: hsl(var(--muted-foreground) / .45);
8201
+ background: color-mix(in oklch, var(--muted-foreground) 45%, transparent);
8196
8202
  border-radius: 9999px;
8197
8203
  }
8198
8204
 
8199
8205
  .lerobot-root .chart-tooltip::-webkit-scrollbar-thumb:hover {
8200
- background: hsl(var(--muted-foreground) / .7);
8206
+ background: color-mix(in oklch, var(--muted-foreground) 70%, transparent);
8201
8207
  }