-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
49 lines (44 loc) · 918 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
48
49
const colors = require('tailwindcss/colors')
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
colors: {
bgColor:"#f9fafc",
btnColor:"#4263eb",
primary:{
DEFAULT:"#4263eb",
hover:"#2342c0",
disabled:"#4264eb80",
light:"#5472ED"
},
secondary:{
DEFAULT:"#7048e8",
hover:"5028c6",
disabled:"5028c6"
},
pink:"#F784AD",
success:{
DEFAULT:"#2BBB94"
},
danger:"#FF2052",
purple:{
DEFAULT:"#7048E8",
hover:"#F4F1FD"
},
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
}
},
variants: {
extend: {},
},
plugins: [],
};