Simple Next.js marketing site for placement.savethedogs.io — home, about, privacy, terms. 501(c)(3) validation page for Twilio/ads/social. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
470 B
CSS
22 lines
470 B
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--color-primary: #1e3a5f;
|
|
--color-primary-light: #2a4d7a;
|
|
--color-primary-dark: #0f1a2e;
|
|
--color-text: #2c2c2c;
|
|
--color-text-secondary: #6b7280;
|
|
--color-surface: #faf8f4;
|
|
--color-surface-muted: #efeae0;
|
|
--color-border: #e4ded1;
|
|
--color-accent: #c4952a;
|
|
--color-accent-hover: #b0842a;
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
body {
|
|
background: var(--color-surface);
|
|
color: var(--color-text);
|
|
font-family: inherit;
|
|
}
|