-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
45 lines (45 loc) · 1.02 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./*.{html,js}"
],
darkMode: "class",
theme: {
extend: {
screens: {
print: { raw: 'print' },
},
colors: {
primary: {
DEFAULT: "#00886e",
50: "#eafff7",
100: "#cbffeb",
200: "#9dfddc",
300: "#5ef7cc",
400: "#25e9b8",
500: "#00d0a1",
600: "#00a983",
700: "#00886e",
800: "#006b57",
900: "#00584a",
950: "#00322b",
}
},
fontFamily: {
body: ["'Poppins'", "'Open San'", "'Sofia Sans Condensed'", "sans-serif", '"Suwannaphum"', "serif"],
poppins: ['"Poppins"', 'sans-serif', '"Suwannaphum"', "serif"]
},
animation: {
'spin-slow': 'spin 10s linear infinite',
'faded': 'faded 2s linear',
},
keyframes: {
faded: {
'0%': { opacity: 0 },
'100%': { opacity: 1 },
}
}
},
},
plugins: [],
}