blob: 2ad4e61a7f75030990b19559c25dc3afb96e3100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
a {
@apply text-blue-dark;
}
@media (prefers-color-scheme: dark) {
a {
@apply text-blueDark-light;
}
}
}
|