compro-mit/public/style/globals.css

31 lines
622 B
CSS
Raw Normal View History

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