29 lines
445 B
CSS
29 lines
445 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
article > p > a, h1, h2, h3, h4, h5, h6 {
|
|
@apply text-indigo-400 !important;
|
|
}
|
|
article > p > strong, code {
|
|
@apply text-white !important;
|
|
}
|
|
|
|
article > h1, h2, h3, h4, h5, h6 {
|
|
@apply text-indigo-400 !important;
|
|
}
|
|
|
|
body {
|
|
background-color: #212121;
|
|
}
|
|
|
|
html {
|
|
@apply text-white;
|
|
}
|
|
|
|
a {
|
|
@apply text-indigo-400 !important;
|
|
}
|
|
}
|