Skip to content

Commit 2ec27d8

Browse files
authored
Merge pull request #22 from imrofayel/fuma
Dark Mode Fix 🎁
2 parents 1895d3f + 059e387 commit 2ec27d8

File tree

5 files changed

+98
-93
lines changed

5 files changed

+98
-93
lines changed

assets/css/main.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -240,19 +240,19 @@
240240

241241
::-webkit-scrollbar-track {
242242
background: transparent; /* Background of the scrollbar track */
243-
@apply dark:bg-[#1f2920] rounded-full;
243+
@apply dark:bg-[#404040] rounded-full;
244244
}
245245

246246
::-webkit-scrollbar-thumb {
247-
@apply dark:bg-[#3c4a3e] bg-gray-200;
247+
@apply dark:bg-[#171717] bg-gray-200;
248248
border-radius: 1rem; /* Rounded corners for the thumb */
249249
border: 3px solid transparent; /* Adds padding around the thumb */
250250
background-clip: content-box; /* Ensures the thumb stays within bounds */
251251
}
252252

253253
::-webkit-scrollbar-thumb:hover {
254254
background: rgba(0, 0, 0, 0.7); /* Darker color on hover */
255-
@apply dark:bg-[#2f3a32];
255+
@apply dark:bg-[#404040];
256256
}
257257

258258
::-webkit-scrollbar-corner {

0 commit comments

Comments
 (0)