Skip to content

Commit 30118a7

Browse files
committed
refactor: enhance global styles with custom text selection and scrollbar design
1 parent 4fb102e commit 30118a7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

app/globals.css

+16
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,19 @@
149149
src: url("/fonts/general-sans/GeneralSans-Semibold.woff2"), format("woff2");
150150
font-display: swap;
151151
}
152+
153+
/* Text selection */
154+
::selection {
155+
background: #892be280;
156+
color: white;
157+
}
158+
159+
::-moz-selection {
160+
background: #8a2be280;
161+
color: white;
162+
}
163+
164+
*{
165+
scrollbar-width: 4px;
166+
scrollbar-color: #8a2be2 #121212;
167+
}

0 commit comments

Comments
 (0)