feat: rework color scheme
This commit is contained in:
parent
1e25e460fc
commit
f44efd5171
29 changed files with 163 additions and 406 deletions
12
tailwind.css
12
tailwind.css
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue