forked from engilore/matterait-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (36 loc) · 889 Bytes
/
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
import type { Config } from "tailwindcss";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
primary: "#a172fd",
secondary: "#a06cd5",
accent: "#b185db",
},
text: {
primary: "#212529",
secondary: "#545F66",
tertiary: "#8d99ae",
muted: "#adb5bd",
},
background: {
light: "#ffffff",
muted: "#f5f5f5",
accent: "#b185db",
},
},
fontFamily: {
main: ["var(--font-playfair)", ...fontFamily.sans],
secondary: ["var(--font-nunito)", ...fontFamily.serif],
},
},
},
plugins: [],
} satisfies Config;