@tailwind base; @tailwind components; @tailwind utilities; .autonomic { /* Palette */ /* RGBA instead of hex so that opacity will work */ --absolute-white: 255, 255, 255; --white: 243, 252, 248; --shocking-pink: 253, 0, 159; --shamrock-green: 0, 198, 88; --bubblegum-pink: 255, 133, 203; --bright-orange: 255, 96, 21; /* Use these in tailwind.config.cjs */ --primary: var(--shocking-pink); --secondary: var(--shamrock-green); --tertiary: var(--bright-orange); --text: var(--shocking-pink); --textInverted: var(--absolute-white); --link: var(--shamrock-green); --background: var(--white); } @layer components { :root { @apply ring-secondary; } h1 { @apply text-5xl font-bold; } h2 { @apply text-4xl font-semibold; } h3 { @apply text-2xl font-semibold; } h4, h5, h6 { @apply text-xl font-semibold; } p, span, li, a { @apply text-xl; } a { @apply text-link underline; } ol { @apply list-decimal; } ul { @apply list-disc; } }