cdrdpyj/src/styles/global.css

32 lines
583 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);
}
.content h2{
font-size: 22px;
margin-bottom: 10px;
line-height: 100%;
font-weight: 700;
}