-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
58 lines (57 loc) · 1.4 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
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./View/**/*.*.twig',
'./View/Block/POS/*.*.twig',
'./View/Modal/POS/*.*.twig'
],
safelist: [
'modal-backdrop',
'selected',
'd-none',
'form-control',
'tab',
'tab-active',
{
pattern: /bg-(red|green|blue|yellow|slate)-(100|200|500)/,
variants: ['hover', 'even', 'odd'],
},
{
pattern: /alert-(success|info|warning|error)/
}
],
theme: {
extend: {
colors: {
'slate': {
'50': '#f7f9f9',
'100': '#eff2f3',
'200': '#d7dfe2',
'300': '#bfcbd1',
'400': '#90a4ae',
'500': '#607d8b',
'600': '#56717d',
'700': '#485e68',
'800': '#3a4b53',
'900': '#2f3d44'
}
}
},
maxHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'4/5': '80%',
'full': '100%',
},
minHeight: {
'0': '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
'4/5': '80%',
'full': '100%',
}
}
}