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%;
@ -46,7 +46,7 @@
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
}
}
}
@layer base {
* {
@ -55,4 +55,9 @@
body {
@apply bg-background text-foreground;
}
::selection {
background-color: #b3d4fc; /* Light blue background */
color: #000000; /* Black text */
}
}