-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
110 lines (108 loc) · 2.54 KB
/
tailwind.config.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* eslint-disable prettier/prettier */
// @ts-check
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import("tailwindcss/types").Config } */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,tsx}",
"./components/**/*.{js,ts,tsx}"
],
theme: {
extend: {
lineHeight: {
11: "2.75rem",
12: "3rem",
13: "3.25rem",
14: "3.5rem"
},
fontFamily: {
sans: ["var(--font-space-grotesk)", ...fontFamily.sans]
},
colors: {
primary: {
DEFAULT: "#2563eb",
50: "#eff6ff",
100: "#dbeafe",
200: "#bfdbfe",
300: "#93c5fd",
400: "#60a5fa",
500: "#3b82f6",
600: "#2563eb",
700: "#1d4ed8",
800: "#1e40af",
900: "#1e3a8a",
950: "#172554"
},
azure: {
DEFAULT: "#61d0ff",
100: "#003146",
200: "#00638d",
300: "#0094d3",
400: "#1bbaff",
500: "#61d0ff",
600: "#81d9ff",
700: "#a0e3ff",
800: "#c0ecff",
900: "#dff6ff"
},
green: {
DEFAULT: "#47f6ad",
100: "#033c24",
200: "#067949",
300: "#09b56d",
400: "#0bf292",
500: "#47f6ad",
600: "#6bf8bd",
700: "#90face",
800: "#b5fcde",
900: "#dafdef"
},
black: {
DEFAULT: "#101620",
100: "#030406",
200: "#06080c",
300: "#090d12",
400: "#0c1118",
500: "#101620",
600: "#2e3f5c",
700: "#4e6a9a",
800: "#849ac1",
900: "#c1cde0"
},
silver: {
DEFAULT: "#e6edf3",
100: "#1f3140",
200: "#3e6180",
300: "#6791b6",
400: "#a7bfd5",
500: "#e6edf3",
600: "#ecf1f6",
700: "#f1f5f8",
800: "#f5f8fa",
900: "#fafcfd"
}
},
typography: (theme) => ({
default: {
css: {
color: theme("colors.gray.900"),
"h1,h2": {
fontWeight: "700",
letterSpacing: theme("letterSpacing.tight")
},
h3: {
fontWeight: "600"
}
}
},
dark: {
css: {
color: theme("colors.silver.500")
}
}
})
}
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")]
};