12 lines
155 B
CSS
12 lines
155 B
CSS
|
|
@import "tailwindcss";
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--background: #f9fafb;
|
||
|
|
--foreground: #111827;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
background: var(--background);
|
||
|
|
color: var(--foreground);
|
||
|
|
}
|