-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
45 lines (44 loc) · 1.01 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
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: {
screens: {
"4xl": { max: "2699px" },
"3xl": { max: "1750px" },
"2xl": { max: "1535px" },
xl: { max: "1200px" },
lg: { max: "1023px" },
md: { max: "767px" },
sm: { max: "639px" },
},
extend: {
colors: {
tertiary: "#F3F3F3",
success: "#B4F9BA",
"dune": "#333333",
"light-gray": "#D9D9D9",
"ironside-gray": "#666666",
"fresh-green": "#6ED677",
"light-teal": "#8EE796",
"dove-gray": "#6B6B6B",
},
fontFamily: {
mona: ["var(--font-mona-sans)"],
},
spacing: {
0.5: "0.125rem",
"1/9": "11.1%",
"8/9": "88.9%",
"3/10": "30%",
"1/10": "10%",
"9/10": "90%",
},
},
},
plugins: [],
};
export default config;