-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 848 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 848 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
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
container: {
padding: {
DEFAULT: '5%',
sm: '32px',
},
},
extend: {
colors: {
base: '#000000',
primary: '#ffffff',
accent: '#FF5B14',
info: '#2DA7FB',
warning: '#FFCB11',
danger: '#ec4141',
success: '#67db8e',
},
fontFamily: {
main: 'ProximaNova, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif',
},
screens: {
'-2xl': { raw: '(max-width: 1535px)' },
'-xl': { raw: '(max-width: 1279px)' },
'-lg': { raw: '(max-width: 1023px)' },
'-md': { raw: '(max-width: 767px)' },
'-sm': { raw: '(max-width: 639px)' },
},
},
},
plugins: [],
};