cdrdpyj/src/styles/global.css

25 lines
476 B
CSS

@import "tailwindcss";
@plugin '@tailwindcss/typography';
@plugin "daisyui";
@theme {
--font-primary: "Poppins", sans-serif;
--font-secondary: "Kameron Variable", sans-serif;
--color-colorPrimary: #EBE6D2;
--color-colorSecondary: #CBA16A;
--color-tertiary: #003421;
--color-link: #CBA16A;
--container-mobile: 40rem;
}
:root {
--background: #22523F;
}
body {
font-family: var(--font-primary);
background-color: var(--background);
}