-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
52 lines (51 loc) · 1.1 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
import type { Config } from "tailwindcss"
const config: Config = {
darkMode: "class",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
colors: {
black: "#000000",
white: "#ffffff",
primary: {
50: "#E3F9E5",
100: "#C1EAC5",
200: "#A3D9A5",
300: "#7BC47F",
400: "#57AE5B",
500: "#3F9142",
600: "#2F8132",
700: "#207227",
800: "#0E5814",
900: "#05400A",
},
neutral: {
50: "#F7F7F7",
100: "#E1E1E1",
200: "#CFCFCF",
300: "#B1B1B1",
400: "#9E9E9E",
500: "#7E7E7E",
600: "#626262",
700: "#515151",
800: "#3B3B3B",
900: "#222222",
},
},
extend: {
screens: {
"2xl": "1440px",
"3xl": "1536px",
},
fontFamily: {
sans: ["var(--font-montserrat)", "sans-serif"],
serif: ["var(--font-playfair-display)", "serif"],
},
},
},
plugins: [],
}
export default config