20 lines
386 B
CSS
20 lines
386 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-secondary-400: #f7a01f;
|
|
--color-title: #020618;
|
|
--color-primary-800: #2852a3;
|
|
}
|
|
|
|
:root {
|
|
--font-open-sauce-one: "Open Sauce One", system-ui, sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-open-sauce-one);
|
|
}
|
|
|
|
.primary-button {
|
|
@apply bg-white p-2 flex gap-3 items-center justify-center text-title font-semibold w-fit cursor-pointer;
|
|
}
|