-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
48 lines (48 loc) · 1.19 KB
/
tailwind.config.js
File metadata and controls
48 lines (48 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
},
extend: {
colors: {
// Exact palette from reference
primary: {
50: "#effefb",
100: "#c8fff4",
200: "#91feea",
300: "#53f5dd",
400: "#1edeca",
500: "#0bb8a8", // Main teal buttons
600: "#079489", // Teal darker
700: "#0a766f",
800: "#0d5d59",
900: "#104d4a",
},
dark: {
50: "#f0f5fa",
100: "#dae4f0",
200: "#b8cce1",
300: "#8aabc9",
400: "#5b86ad",
500: "#3f6a93",
600: "#31547b",
700: "#2a4564",
800: "#263c55",
900: "#1b2d40",
950: "#0f1c2e", // Darkest navy for hero overlays / footer
},
},
fontFamily: {
sans: ["Inter", "system-ui", "-apple-system", "sans-serif"],
serif: ["Playfair Display", "Georgia", "serif"],
},
},
},
plugins: [],
};