style: slider handle color

This commit is contained in:
jialin
2026-01-06 17:21:32 +08:00
parent 2816fedc36
commit d8b3331648
7 changed files with 49 additions and 12 deletions
+7 -6
View File
@@ -72,14 +72,15 @@ export default {
optionSelectedFontWeight: 400
},
Slider: {
handleSize: 8,
handleSizeHover: 8,
handleSize: 10,
handleSizeHover: 10,
railSize: 5,
handleActiveOutlineColor: '#646464', // disable default outline
handleActiveColor: '#656565', // same as the rail color
handleColor: '#474747', // same as the rail color
trackBg: 'rgba(255,255,255,.15)',
handleColor: 'rgba(255,255,255,0.2)',
trackHoverBg: 'rgba(255,255,255,0.25)',
handleActiveColor: 'rgba(255,255,255,0.3)',
trackHoverBg: '#646464',
dotActiveBorderColor: 'rgba(255,255,255,0.25)',
handleActiveOutlineColor: 'rgba(255,255,255,0.25)',
dotBorderColor: 'rgba(255,255,255,0.25)'
}
},
+8 -6
View File
@@ -70,14 +70,16 @@ export default {
optionSelectedFontWeight: 400
},
Slider: {
handleSize: 8,
handleSizeHover: 8,
handleSize: 10,
handleSizeHover: 10,
railSize: 5,
handleActiveOutlineColor: '#B4B4B4', // disable default outline
handleActiveColor: '#D0D0D0', // same as the rail color
handleColor: '#D0D0D0', // same as the rail color
handleHoverColor: '#B4B4B4', // same as the rail hover color
trackBg: 'rgba(0,0,0,0.15)',
handleColor: 'rgba(0,0,0,0.2)',
trackHoverBg: 'rgba(0,0,0,0.25)',
handleActiveColor: 'rgba(0,0,0,0.3)',
trackHoverBg: '#B4B4B4',
dotActiveBorderColor: 'rgba(0,0,0,0.25)',
handleActiveOutlineColor: 'rgba(0,0,0,0.25)',
dotBorderColor: 'rgba(0,0,0,0.25)'
}
},