Skip to content

Commit 1b909e9

Browse files
authored
Refine scrollbar styles for light and dark themes
Updated scrollbar styles for light and dark themes, adjusting dimensions and colors for better visibility.
1 parent d7f9fa3 commit 1b909e9

1 file changed

Lines changed: 14 additions & 20 deletions

File tree

src/css/custom.css

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

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

1995-
/* --- LIGHT THEME --- */
1996-
html[data-theme="light"] ::-webkit-scrollbar-track {
1997-
background: #f1f5f9 !important;
1995+
::-webkit-scrollbar-track {
1996+
background: transparent !important;
19981997
}
19991998

1999+
/* --- LIGHT THEME --- */
20002000
html[data-theme="light"] ::-webkit-scrollbar-thumb {
2001-
background-color: #cbd5e1 !important;
2002-
border: 2px solid #f1f5f9 !important;
2001+
background-color: rgba(203, 213, 225, 1) !important;
20032002
border-radius: 10px !important;
20042003
}
20052004

20062005
html[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
2007-
background-color: #94a3b8 !important;
2006+
background-color: rgba(148, 163, 184, 1) !important;
20082007
}
20092008

20102009
/* --- DARK THEME --- */
2011-
html[data-theme="dark"] ::-webkit-scrollbar-track {
2012-
background: #0f172a !important; /* Fixed: Giving it a solid dark background so it doesn't disappear */
2013-
}
2014-
20152010
html[data-theme="dark"] ::-webkit-scrollbar-thumb {
2016-
background-color: #334155 !important; /* Fixed: Clear contrast slate grey thumb */
2017-
border: 2px solid #0f172a !important;
2011+
background-color: rgba(51, 65, 85, 0.8) !important;
20182012
border-radius: 10px !important;
20192013
}
20202014

20212015
html[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
2022-
background-color: #06b6d4 !important; /* Pops cyan on hover */
2016+
background-color: #06b6d4 !important;
20232017
}
20242018

2025-
/* --- FIREFOX FALLBACKS --- */
2026-
html[data-theme="light"] * {
2019+
/* --- FIREFOX CORRECTIONS --- */
2020+
html[data-theme="light"] {
20272021
scrollbar-width: thin !important;
2028-
scrollbar-color: #cbd5e1 #f1f5f9 !important;
2022+
scrollbar-color: #cbd5e1 transparent !important;
20292023
}
20302024

2031-
html[data-theme="dark"] * {
2025+
html[data-theme="dark"] {
20322026
scrollbar-width: thin !important;
2033-
scrollbar-color: #334155 #0f172a !important;
2027+
scrollbar-color: #334155 transparent !important;
20342028
}

0 commit comments

Comments
 (0)