-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
46 lines (44 loc) · 1.02 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
const colors = require('tailwindcss/colors');
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
colors:{
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
gray:colors.gray,
white: colors.white,
pink:colors.pink,
blue:colors.blue,
m_dark_blue:'#00A9CC',
red:colors.red,
footer_bg: '#f1f1f1',
m_gray:'#E1E1E1',
m_purple: '#B894FF',
m_dark_orange:'#FF9B73',
m_lime: '#E4EE8E',
m_blue:'#01D4FF',
m_light_orange:'#FFC972',
m_dark_purple:'#9376CC',
yellow:colors.yellow,
},
extend: {
fontFamily:{
'poppins': ['Poppins'],
},
spacing:{
},
dropShadow:{
'2xl': ' 0px 8px 24px rgba(149, 157, 165, 0.2)'
}
},
},
variants: {
extend: {
ringWidth:['hover','active'],
dropShadow:['hover','active']
},
},
plugins: [],
}