Add WIP color sliders

This commit is contained in:
KernelDeimos
2024-04-06 02:35:06 -04:00
parent c6fb75c65f
commit b99534ebdf
7 changed files with 215 additions and 2 deletions
+32 -1
View File
@@ -3618,4 +3618,35 @@ label {
.confirm-user-deletion-password{
width: 100%;
margin-bottom: 20px;
}
}
.theme-dialog-slider {
--webkit-appearance: none;
width: 100%;
height: 25px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
--webkit-transition: .2s;
transition: opacity .2s;
}
.theme-dialog-slider:hover {
opacity: 1;
}
.theme-dialog-slider::-webkit-slider-thumb {
--webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
background: #04AA6D;
cursor: pointer;
}
.theme-dialog-slider::-moz-range-thumb {
width: 25px;
height: 25px;
background: #04AA6D;
cursor: pointer;
}
+7
View File
@@ -0,0 +1,7 @@
/* used for pseudo-stylesheet */
/*
hue = 320; ss.addRule('.taskbar, .window-head, .window-sidebar', `background-color: hsl(${hue}, 65.1%, 70.78%)`)
*/