-
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) · 1013 Bytes
/
tailwind.config.js
File metadata and controls
37 lines (37 loc) · 1013 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
/** @type {import("tailwindcss").Config} */
module.exports = {
corePlugins: { preflight: false },
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}', './library/**/*.{js,ts}'],
theme: {
fontFamily: {
poppins: ['Poppins'],
},
extend: {
colors: {
primary: {
DEFAULT: '#14b8a6',
2: '#5Fb8a6',
},
secondary: {
DEFAULT: '#e0e7ff',
},
white: {
DEFAULT: '#ffffff',
},
black: {
DEFAULT: '#000000',
semi: '#414a4c',
},
red: {
DEFAULT: '#ff0e0e',
},
},
maxWidth: {
980: '980px',
1160: '1160px',
1320: '1320px',
},
},
},
plugins: [],
};