generated from shiftwalk/shiftwalk-nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 814 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 814 Bytes
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
module.exports = {
darkMode: 'class',
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
'sans': ['Suisse', 'Arial', 'sans-serif'],
'serif': ['Denton', 'ui-serif', 'Georgia'],
'mono': ['Lucida Console', 'Courier', 'monospace'],
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
"2xl": "1600px",
"3xl": "1920px"
},
extend: {
colors: {
'black': '#232323',
'off-black': '#232E38',
'texture-white': '#DBDBDB',
'off-white': '#DBCFC2',
'white': '#FFF',
'example-color': {
light: '#ffb288',
DEFAULT: '#d18d67',
dark: '#ce8860',
},
}
},
},
plugins: []
}