Changing cursor color and blink settings

This commit is contained in:
itdominator 2025-07-13 20:55:17 -05:00
parent ec841445ed
commit ab17e48338

View File

@ -61,3 +61,15 @@
.ace_sb-h {
width: 0.8em !important;
}
.ace_cursor {
color: rgba(249, 148, 6, 0.64);
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}