compro-mit/public/style/globals.css
2026-05-28 17:34:56 +07:00

36 lines
695 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-primary-surface: #f0f7fe;
--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);
}
html {
scroll-behavior: smooth;
}
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;
}