forked from scriptmint-solution/vumin-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (62 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
64
const colors = require('tailwindcss/colors')
const customColor = {
"dark-header" : "#242526",
"dark-body" : "#18191A",
"primary" : "#330F57",
"dark-primary" : "#230B3C",
"darken-primary" : "#0D0316",
"light-primary" : "#581C87",
"lighten-primary" : "#6B21A8",
"secondary" : "#E5E7EB",
"dark-secondary" : "#D1D5DB",
"darken-secondary" : "#9CA3AF",
"light-secondary" : "#F3F4F6",
"lighten-secondary": "#F9FAFB",
"success" : "#34D399",
"dark-success" : "#10B981",
"light-success" : "#6EE7B7",
"danger" : "#EF4444",
"dark-danger" : "#DC2626",
"light-danger" : "#F87171",
"info" : "#60A5FA",
"dark-info" : "#3B82F6",
"light-info" : "#93C5FD",
"warning" : "#FBBF24",
"dark-warning" : "#F59E0B",
"light-warning" : "#FCD34D",
}
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
textColor: {
"label" : "#374151",
"success-label": "#ECFDF5",
"danger-label" : "#FEF2F2",
"info-label" : "#EFF6FF",
"warning-label": "#FFFBEB",
...customColor,
...colors
},
ringColor: {
...customColor,
...colors
},
backgroundColor: {
...customColor,
...colors
},
borderColor: {
...customColor,
...colors
},
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}