feat: rework color scheme

This commit is contained in:
Cory Dransfeldt 2023-05-06 14:43:19 -07:00
parent 1e25e460fc
commit f44efd5171
No known key found for this signature in database
29 changed files with 163 additions and 406 deletions

View file

@ -3,12 +3,12 @@
@tailwind utilities;
::-moz-selection {
color: theme(colors.gray.800);
color: theme(colors.white);
background: theme(colors.purple.400);
}
::selection {
color: theme(colors.gray.800);
color: theme(colors.white);
background: theme(colors.purple.400);
}
@ -33,5 +33,11 @@
}
.active {
@apply text-primary-400 !important;
@apply text-purple-500 !important;
}
.active:hover,
.active:active,
.active:focus {
@apply text-purple-400 !important;
}