Files
ISA-Frontend/tailwind.config.js
Lorenz Hilpert b1da89717d Added Tailwind
2020-09-22 19:25:41 +02:00

44 lines
942 B
JavaScript

module.exports = {
purge: [],
theme: {
screens: {
tablet: '640px',
desktop: '1024px',
'desktop-l': '1280px',
'desktop-xl': '1680px',
},
zIndex: {
dropdown: 10,
sticky: 20,
fixed: 30,
modalBackdrop: 40,
modal: 50,
popover: 60,
tooltip: 70,
},
extend: {
maxWidth: {
content: '916px',
},
colors: {
brand: '#f70400',
// active: '#1f466c',
// inactive: '#3980c6',
// disabled: '#b0cce8',
customer: '#e6eff9',
'font-customer': '#557eb8',
'active-customer': '#1f466c',
'inactive-customer': '#9cbfe2',
'disabled-customer': '#d7e6f4',
branch: '#edeff0',
'font-branch': '#557eb8',
'active-branch': '#596470',
'inactive-branch': '#9ca5b0',
'disabled-branch': '#c6cbd2',
},
},
},
variants: {},
plugins: [],
};