-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
tailwind.config.js
73 lines (72 loc) · 1.69 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
65
66
67
68
69
70
71
72
73
const { colors } = require('tailwindcss/defaultTheme');
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: {
content: [
'resources/views/**/**/*.blade.php',
'resources/views/**/*.blade.php',
'resources/views/*.blade.php'
],
options: {
whitelist: [
"text-success-700",
"text-warning-700",
"text-failure-700",
"text-default-700",
"text-success-500",
"text-warning-500",
"text-failure-500",
"text-default-500",
"bg-success-200",
"bg-warning-200",
"bg-failure-200",
"bg-default-200",
]
}
},
theme: {
colors: {
black: colors.black,
white: colors.white,
gray: colors.gray,
teal: {
'100': '#D2F9F7',
'200': '#A6F2F0',
'300': '#79ECE8',
'400': '#4CE6E0',
'500': '#20DFD9',
'600': '#19AEA9',
'700': '#127D79',
'800': '#0B4C4A',
'900': '#041B1A'
},
red: colors.red,
yellow: colors.yellow,
green: colors.green,
blue: colors.blue,
indigo: colors.indigo,
purple: colors.purple,
orange: colors.orange,
pink: colors.pink,
success: colors.green,
warning: colors.yellow,
failure: colors.red,
default: colors.blue,
},
maxHeight: {
'120': '30rem'
},
extend: {
spacing: {
'120': '30rem'
}
},
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
],
}