Skip to content

Commit

Permalink
Updated the light theme to have a lighter scrollbar (#590)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan authored Jan 27, 2018
1 parent ffb90bb commit 50ee154
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
12 changes: 6 additions & 6 deletions src/theme/book.css
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
background: #fafafa;
}
.light .sidebar::-webkit-scrollbar-thumb {
background: #364149;
background: #ccc;
}
.light .chapter li {
color: #aaa;
Expand Down Expand Up @@ -474,7 +474,7 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
background: #fff;
}
.light ::-webkit-scrollbar-thumb {
background: #333;
background: #ccc;
}
.coal {
color: #98a3ad;
Expand Down Expand Up @@ -640,7 +640,7 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
background: #141617;
}
.coal ::-webkit-scrollbar-thumb {
background: #98a3ad;
background: #a1adb8;
}
.navy {
color: #bcbdd0;
Expand Down Expand Up @@ -806,7 +806,7 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
background: #161923;
}
.navy ::-webkit-scrollbar-thumb {
background: #bcbdd0;
background: #c8c9db;
}
.rust {
color: #262625;
Expand Down Expand Up @@ -972,7 +972,7 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
background: #e1e1db;
}
.rust ::-webkit-scrollbar-thumb {
background: #262625;
background: #c8c9db;
}
.ayu {
color: #c5c5c5;
Expand Down Expand Up @@ -1138,7 +1138,7 @@ html:not(.sidebar-visible) #menu-bar:not(:hover).folded > #menu-bar-sticky-conta
background: #0f1419;
}
.ayu ::-webkit-scrollbar-thumb {
background: #c5c5c5;
background: #c8c9db;
}
@media only print {
#sidebar,
Expand Down
2 changes: 2 additions & 0 deletions src/theme/stylus/themes/ayu.styl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ $sidebar-non-existant = #5c6773
$sidebar-active = #ffb454
$sidebar-spacer = #2d334f

$scrollbar = $sidebar-fg

$icons = #737480
$icons-hover = #b7b9cc

Expand Down
4 changes: 2 additions & 2 deletions src/theme/stylus/themes/base.styl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
}

&::-webkit-scrollbar-thumb {
background: $sidebar-fg;
background: $scrollbar;
}
}

Expand Down Expand Up @@ -186,6 +186,6 @@
}

::-webkit-scrollbar-thumb {
background: $fg;
background: $scrollbar;
}
}
2 changes: 2 additions & 0 deletions src/theme/stylus/themes/coal.styl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ $sidebar-non-existant = #505254
$sidebar-active = #3473ad
$sidebar-spacer = #393939

$scrollbar = $sidebar-fg

$icons = #43484d
$icons-hover = #b3c0cc

Expand Down
2 changes: 2 additions & 0 deletions src/theme/stylus/themes/light.styl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ $sidebar-non-existant = #aaaaaa
$sidebar-active = #008cff
$sidebar-spacer = #f4f4f4

$scrollbar = #cccccc

$icons = #cccccc
$icons-hover = #333333

Expand Down
2 changes: 2 additions & 0 deletions src/theme/stylus/themes/navy.styl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ $sidebar-non-existant = #505274
$sidebar-active = #2b79a2
$sidebar-spacer = #2d334f

$scrollbar = $sidebar-fg

$icons = #737480
$icons-hover = #b7b9cc

Expand Down
2 changes: 2 additions & 0 deletions src/theme/stylus/themes/rust.styl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ $sidebar-non-existant = #505254
$sidebar-active = #e69f67
$sidebar-spacer = #45373a

$scrollbar = $sidebar-fg

$icons = #737480
$icons-hover = #262625

Expand Down

0 comments on commit 50ee154

Please sign in to comment.