refactor: update environments colour schema

This commit is contained in:
nivedin
2024-02-22 13:58:00 +05:30
committed by Andrew Bastin
parent 9704b3324b
commit e30b59e1b5
2 changed files with 28 additions and 10 deletions

View File

@@ -563,12 +563,22 @@ details[open] summary .indicator {
.env-highlight {
@apply text-accentContrast;
&.env-found {
@apply bg-accentDark;
@apply hover:bg-accent;
&.request-variable-highlight {
@apply bg-amber-500;
@apply hover:bg-amber-300;
}
&.env-not-found {
&.environment-variable-highlight {
@apply bg-green-500;
@apply hover:bg-green-300;
}
&.global-variable-highlight {
@apply bg-blue-500;
@apply hover:bg-blue-300;
}
&.environment-not-found-highlight {
@apply bg-red-500;
@apply hover:bg-red-600;
}