We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a7690d commit 52d93a5Copy full SHA for 52d93a5
1 file changed
src/components/Global/CustomCursor/styles.css
@@ -8,7 +8,7 @@
8
width: 100px;
9
height: 100px;
10
border-radius: 50%;
11
- background: var(--foreground);
+ background: var(--background);
12
mix-blend-mode: difference;
13
pointer-events: none;
14
transform-origin: left top;
@@ -28,7 +28,7 @@
28
.cursor-inner {
29
@apply fixed;
30
31
32
width: 20px;
33
height: 20px;
34
@@ -47,6 +47,12 @@
47
}
48
49
50
+@media (prefers-color-scheme: dark) {
51
+ .custom-cursor, .cursor-inner {
52
+ background: var(--foreground);
53
+ }
54
+}
55
+
56
@keyframes cursor-pulse {
57
0% {
58
transform: scale(1) translate(-50%, -50%);
0 commit comments