feat(web): update selection style

This commit is contained in:
arkohut 2024-11-16 11:23:12 +08:00
parent 78fedfabb6
commit 38d50e1e79

View File

@ -4,7 +4,7 @@
@layer base {
:root {
--background: 0 0% 98%;
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
@ -55,4 +55,9 @@
body {
@apply bg-background text-foreground;
}
::selection {
background-color: #b3d4fc; /* Light blue background */
color: #000000; /* Black text */
}
}