31 lines
622 B
CSS
31 lines
622 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-secondary-400: #f7a01f;
|
|
--color-title: #020618;
|
|
--color-subtitle: #45556c;
|
|
--color-body: #62748e;
|
|
--color-primary-800: #2852a3;
|
|
--color-primary-600: #337add;
|
|
--color-primary-100: #deedfb;
|
|
--color-border: #e2e8f0;
|
|
--color-subtle: #f1f5f9;
|
|
}
|
|
|
|
:root {
|
|
--font-open-sauce-one: "Open Sauce One", system-ui, sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-open-sauce-one);
|
|
}
|
|
|
|
ul {
|
|
list-style-type: disc;
|
|
list-style-position: inside;
|
|
}
|
|
|
|
.primary-button {
|
|
@apply bg-white p-2 flex gap-3 items-center justify-center text-title font-semibold w-fit cursor-pointer;
|
|
}
|