feat: some colors stuff

This commit is contained in:
2024-09-30 09:08:09 +03:00
parent 99b71b9da9
commit 100af0aa06

View File

@@ -2,9 +2,18 @@
box-shadow: 3px 3px 20px 2px rgb(0 0 0 / 8%), -3px -3px 20px 2px rgba(0, 0, 0, 0.08); box-shadow: 3px 3px 20px 2px rgb(0 0 0 / 8%), -3px -3px 20px 2px rgba(0, 0, 0, 0.08);
@mixin dark { @mixin dark {
background-color: #454545; background-color: #454545;
&:hover {
background-color: #575757;
}
} }
@mixin light { @mixin light {
background-color: #f1f6f8; background-color: #ffffff;
color: var(--mantine-color-dark-3); color: var(--mantine-color-dark-3);
&:hover {
background-color: #efefef;
color: var(--mantine-color-dark-3);
}
} }
} }