13 lines
162 B
CSS
13 lines
162 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html {
|
|
background-color: #1f2937;
|
|
color: #fff;
|
|
}
|
|
|
|
body {
|
|
@apply bg-gray-900 text-white;
|
|
}
|