Skip to content

Commit 4323760

Browse files
committed
scrollbar color to green in dark mode
Signed-off-by: Michael Gnehr <[email protected]>
1 parent e34deb5 commit 4323760

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

public/css/theme-arc-green.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
.repository .ui.segment.sub-menu .list .item a{color:#dbdbdb}
1313
.ui.horizontal.segments>.segment{background-color:#383c4a}
1414
body{background:#383c4a;color:#9e9e9e}
15-
*,body,html{scrollbar-width:thin;scrollbar-color:#2a2a2a #fff}
15+
*,body,html{scrollbar-width:thin;scrollbar-color:#87ab63 #fff}
1616
body ::-webkit-scrollbar,body::-webkit-scrollbar,html ::-webkit-scrollbar,html::-webkit-scrollbar{-webkit-appearance:none;width:10px;height:10px}
1717
body ::-webkit-scrollbar-track,body::-webkit-scrollbar-track,html ::-webkit-scrollbar-track,html::-webkit-scrollbar-track{border-radius:0;background:rgba(255,255,255,.1)}
18-
body ::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb,html ::-webkit-scrollbar-thumb,html::-webkit-scrollbar-thumb{cursor:pointer;border-radius:5px;transition:color .2s ease;background:rgba(255,255,255,.25)}
19-
body ::-webkit-scrollbar-thumb:window-inactive,body::-webkit-scrollbar-thumb:window-inactive,html ::-webkit-scrollbar-thumb:window-inactive,html::-webkit-scrollbar-thumb:window-inactive{background:rgba(255,255,255,.15)}
20-
body ::-webkit-scrollbar-thumb:hover,body::-webkit-scrollbar-thumb:hover,html ::-webkit-scrollbar-thumb:hover,html::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.35)}
18+
body ::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb,html ::-webkit-scrollbar-thumb,html::-webkit-scrollbar-thumb{cursor:pointer;border-radius:5px;transition:color .2s ease;background:#87ab63}
19+
body ::-webkit-scrollbar-thumb:window-inactive,body::-webkit-scrollbar-thumb:window-inactive,html ::-webkit-scrollbar-thumb:window-inactive,html::-webkit-scrollbar-thumb:window-inactive{background:#87ab63}
20+
body ::-webkit-scrollbar-thumb:hover,body::-webkit-scrollbar-thumb:hover,html ::-webkit-scrollbar-thumb:hover,html::-webkit-scrollbar-thumb:hover{background:#87ab63}
2121
a{color:#87ab63}
2222
a:hover{color:#a0cc75}
2323
.ui.card>.extra a:not(.ui):hover,.ui.cards>.card>.extra a:not(.ui):hover{color:#a0cc75}

public/less/themes/arc-green.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ html,
9191
body,
9292
* {
9393
scrollbar-width: thin;
94-
scrollbar-color: #2a2a2a #ffffff;
94+
scrollbar-color: #87ab63 #ffffff;
9595
}
9696

9797
/* webkit scrollbars */
@@ -121,21 +121,21 @@ body ::-webkit-scrollbar-thumb {
121121
border-radius: 5px;
122122
-webkit-transition: color 0.2s ease;
123123
transition: color 0.2s ease;
124-
background: rgba(255,255,255,0.25);
124+
background: #87ab63;
125125
}
126126

127127
html::-webkit-scrollbar-thumb:window-inactive,
128128
body::-webkit-scrollbar-thumb:window-inactive,
129129
html ::-webkit-scrollbar-thumb:window-inactive,
130130
body ::-webkit-scrollbar-thumb:window-inactive {
131-
background: rgba(255,255,255,0.15);
131+
background: #87ab63;
132132
}
133133

134134
html::-webkit-scrollbar-thumb:hover,
135135
body::-webkit-scrollbar-thumb:hover,
136136
html ::-webkit-scrollbar-thumb:hover,
137137
body ::-webkit-scrollbar-thumb:hover {
138-
background: rgba(255,255,255,0.35);
138+
background: #87ab63;
139139
}
140140

141141
a {

0 commit comments

Comments
 (0)