-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
60 lines (59 loc) · 1.97 KB
/
tailwind.config.ts
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
54
55
56
57
58
59
60
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: {
"coffee-white": "#fefdf5",
"coffee-black": "#021928",
"coffee-brown": "#b59c85",
"coffee-alabaster": "#ece5d9",
serenade: {
"50": "#ffffff",
"100": "#fffefc",
"200": "#fffefa",
"300": "#fcfaf2",
"400": "#fcf7ed",
"500": "#faf1e4",
"600": "#e0ceb8",
"700": "#ba9d7f",
"800": "#967253",
"900": "#704a2e",
"950": "#472713",
},
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
fontFamily: {
nunito: ["Nunito", "sans-serif"],
"kodchasan-svg": ["Kodchasan", "sans-serif"],
koho: ["KoHo", "sans-serif"],
gluten: ["Gluten", "sans-serif"],
"dancing-script": ["Dancing Script", "cursive"],
},
fontSize: {
"2xs": ".65rem",
"3xs": ".5rem",
"6.5xl": "4.125rem",
"7xl": "5rem",
},
borderWidth: {
"3": "3px",
},
},
fontFamily: {
pacifico: ["var(--font-pacifico)"],
kodchasan: ["var(--font-kodchasan)"],
"tilt-neon": ["var(--font-tilt-neon)"],
},
},
plugins: [require("@tailwindcss/line-clamp")],
};
export default config;