forked from bearcatsdev/adab-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.05 KB
/
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
48
49
50
51
52
module.exports = {
purge: false,
theme: {
extend: {
colors: {
primary: '#428DFC',
primaryDark: '#2279FC',
primaryDarker: '#0E6DFB',
info: '#30A8E6',
success: '#A1C920',
danger: '#FC5842',
dark: '#343A40',
light: '#D2DEEB',
secondary: '#6C757D',
black: '#000',
white: '#fff',
body: '#3C4859',
background: '#F8F9FA',
transparent: 'transparent'
},
container: {
padding: {
default: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
},
},
fontFamily: {
'body': ['Inter']
},
spacing: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
boxShadow: {
'primary': '0px 2px 8px rgba(66, 141, 252, 0.25);'
},
screens: {
'dark-mode': {
raw: '(prefers-color-scheme: dark)'
}
}
},
},
variants: {},
plugins: [
require('autoprefixer'),
require('tailwindcss'),
],
}