generated from shiftwalk/shiftwalk-nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 976 Bytes
/
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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
'sans': ['Aeonik', 'Arial', 'sans-serif'],
'mono': ['Lucida Console', 'Courier', 'monospace'],
},
extend: {
colors: {
'black': '#000',
'white': '#FFF',
'off-white': {
DEFAULT: '#F8F3ED',
dark: '#E1D7CD'
},
'purple': {
DEFAULT: '#965578',
dark: '#3C3746'
},
'blue': {
DEFAULT: '#C8C8D2',
dark: '#9696A0'
},
'soft-black': {
DEFAULT: '#373232',
dark: '#141414',
},
'yellow': {
DEFAULT: '#FFAF2D',
dark: '#966E46'
},
'orange': {
DEFAULT: '#F07837',
dark: '#A04B32',
}
},
screens: {
"2xl": "1600px",
"3xl": "1920px"
},
},
},
plugins: []
}