Skip to content

Commit d7f9fa3

Browse files
authored
Enhance scrollbar styles for light and dark themes
Updated scrollbar styles for light and dark themes with improved visibility and contrast.
1 parent e20dd73 commit d7f9fa3

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

src/css/custom.css

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,47 +1988,47 @@ h3:first-child {
19881988
/* --- CUSTOM MODERN SCROLLBAR --- */
19891989

19901990
::-webkit-scrollbar {
1991-
width: 8px;
1992-
height: 10px;
1991+
width: 10px !important;
1992+
height: 10px !important;
19931993
}
19941994

19951995
/* --- LIGHT THEME --- */
19961996
html[data-theme="light"] ::-webkit-scrollbar-track {
1997-
background: transparent;
1997+
background: #f1f5f9 !important;
19981998
}
19991999

20002000
html[data-theme="light"] ::-webkit-scrollbar-thumb {
2001-
background-color: #944A8C;
2002-
border: 2px solid var(--ifm-background-color);
2003-
border-radius: 10px;
2001+
background-color: #cbd5e1 !important;
2002+
border: 2px solid #f1f5f9 !important;
2003+
border-radius: 10px !important;
20042004
}
20052005

20062006
html[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
2007-
background-color: #60226E;
2007+
background-color: #94a3b8 !important;
20082008
}
20092009

20102010
/* --- DARK THEME --- */
20112011
html[data-theme="dark"] ::-webkit-scrollbar-track {
2012-
background: transparent;
2012+
background: #0f172a !important; /* Fixed: Giving it a solid dark background so it doesn't disappear */
20132013
}
20142014

20152015
html[data-theme="dark"] ::-webkit-scrollbar-thumb {
2016-
background-color: #944A8C;
2017-
border: 2px solid var(--ifm-background-color);
2018-
border-radius: 10px;
2016+
background-color: #334155 !important; /* Fixed: Clear contrast slate grey thumb */
2017+
border: 2px solid #0f172a !important;
2018+
border-radius: 10px !important;
20192019
}
20202020

20212021
html[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
2022-
background-color: #60226E;
2022+
background-color: #06b6d4 !important; /* Pops cyan on hover */
20232023
}
20242024

20252025
/* --- FIREFOX FALLBACKS --- */
20262026
html[data-theme="light"] * {
2027-
scrollbar-width: thin;
2028-
scrollbar-color: #944A8C transparent;
2027+
scrollbar-width: thin !important;
2028+
scrollbar-color: #cbd5e1 #f1f5f9 !important;
20292029
}
20302030

20312031
html[data-theme="dark"] * {
2032-
scrollbar-width: thin;
2033-
scrollbar-color: #944A8C transparent;
2032+
scrollbar-width: thin !important;
2033+
scrollbar-color: #334155 #0f172a !important;
20342034
}

0 commit comments

Comments
 (0)