-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
67 lines (66 loc) · 1.66 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}",],
theme: {
colors: {
'white': '#FFFFFF',
'black': '#000000',
'kitchen-blue': '#499CA6',
'kitchen-yellow': '#F2E5A2',
'kitchen-orange': '#F2762E',
'kitchen-red': '#D91604',
'kitchen-beige': '#D98282',
'kitchen-food-detail': '#4958A6',
'kitchen-food-detail-selected': '#FF9900',
'kitchen-button-red': '#D91604',
'kitchen-button-green': '#2FE900',
'kitchen-button-orange': '#FF9900',
'category-red': '#D91604',
'category-purple': '#C442C7',
'category-orange': '#FF9900',
'category-green': '#62B73A',
'category-blue': '#4958A6',
'category-cyan': '#2FAFCB',
'category-all': '#D91604',
'grey-bg': '#D9D9D9',
},
extend: {
height: {
'lh': '7%',
'lf': '13%',
'pos-button': '11%',
'current-cmd-content': '92%',
'current-cmd-footer': '15%',
'current-cmd-header': '8%',
'ls': '20%',
'lb': '80%',
'85': '85%',
'1/12': '8.333333333%',
'9/12': '75%'
},
width: {
'1/10': '10%',
'9/10': '90%',
'1/20': '5%',
},
fontSize: {
'16px': '16px',
'24px': '24px',
'20px': '20px',
'testpx': '28px'
},
gridTemplateColumns: {
'48': 'repeat(48, minmax(0, 1fr))',
},
gridColumn: {
'span-36': 'span 36 / span 36',
},
boxShadow: {
"button": "inset 0 10px 20px -20px rgba(0,0,0,1)",
}
},
},
plugins: [
require('tailwind-scrollbar-hide')
],
}