File tree 3 files changed +10
-5
lines changed
3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ export default css`
10
10
}
11
11
& ::-webkit-scrollbar-track {
12
12
border-radius : ${ getSizeBy ( 0.5 ) } ;
13
- background-color : ${ getRgbColor ( "border " , 0. 1) } ;
13
+ background-color : ${ getRgbColor ( "scrollbarTrack " , 1 ) } ;
14
14
}
15
15
& ::-webkit-scrollbar-thumb {
16
16
border-radius : ${ getSizeBy ( 1 ) } ;
17
- background-color : ${ getRgbColor ( "border " , 0.3 ) } ;
17
+ background-color : ${ getRgbColor ( "scrollbarThumb " , 0.8 ) } ;
18
18
}
19
19
& ::-webkit-scrollbar-thumb : hover {
20
- background-color : ${ getRgbColor ( "border " , 0.5 ) } ;
20
+ background-color : ${ getRgbColor ( "scrollbarThumb " , 1 ) } ;
21
21
}
22
22
& ::-webkit-scrollbar-track-piece {
23
- background-color : ${ getRgbColor ( "border " , 0.3 ) } ;
23
+ background-color : ${ getRgbColor ( "scrollbarTrack " , 0.3 ) } ;
24
24
}
25
25
& ::-webkit-scrollbar-corner {
26
- background-color : ${ getRgbColor ( "border " , 0.3 ) } ;
26
+ background-color : ${ getRgbColor ( "scrollbarTrack " , 0.3 ) } ;
27
27
}
28
28
`
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ const appColors = {
20
20
modalInfoBackground : rawColors . neutral . grey50 ,
21
21
menuItemSelected : rawColors . green . green30 ,
22
22
menuItemHover : rawColors . green . green10 ,
23
+ scrollbarThumb : rawColors . neutral . grey80 ,
24
+ scrollbarTrack : rawColors . neutral . grey35 ,
23
25
//links
24
26
link : rawColors . green . green110 ,
25
27
linkHover : rawColors . green . green120 ,
Original file line number Diff line number Diff line change @@ -20,6 +20,9 @@ const appColors = {
20
20
modalInfoBackground : rawColors . neutral . blackhaze ,
21
21
menuItemSelected : rawColors . green . green196 ,
22
22
menuItemHover : rawColors . green . green190 ,
23
+ scrollbarThumb : rawColors . neutral . grey160 ,
24
+ scrollbarTrack : rawColors . neutral . grey190 ,
25
+
23
26
//links
24
27
link : rawColors . green . green100 ,
25
28
linkHover : rawColors . green . green110 ,
You can’t perform that action at this time.
0 commit comments