-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
53 lines (52 loc) · 1.15 KB
/
tailwind.config.ts
File metadata and controls
53 lines (52 loc) · 1.15 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
49
50
51
52
53
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Pastel "fruit smoothie" palette
mint: {
50: "#f0fdf4",
100: "#dcfce7",
200: "#bbf7d0",
300: "#86efac",
400: "#4ade80",
500: "#22c55e",
},
lavender: {
50: "#fdf4ff",
100: "#fae8ff",
200: "#f5d0fe",
300: "#e879f9",
},
coral: {
50: "#fff7ed",
100: "#ffedd5",
200: "#fed7aa",
300: "#fdba74",
},
cream: {
50: "#fffbeb",
100: "#fef3c7",
},
background: "#fffbeb",
surface: "#ffffff",
"nav-dark": "#1f2937",
},
fontFamily: {
lora: ["var(--font-lora)", "serif"],
inter: ["var(--font-inter)", "sans-serif"],
},
borderRadius: {
"2xl": "1rem",
"3xl": "1.5rem",
},
},
},
plugins: [],
};
export default config;