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
| module.exports = { important: false, prefix: 'tw-', purge: [ '../views/site/*.php' ], darkMode: false, theme: { fontFamily: { 'sans': 'Roboto, sans-serif', 'serif': 'Roboto, sans-serif', 'mono': 'Roboto, sans-serif', 'display': 'Roboto, sans-serif', 'body': 'Roboto, sans-serif' }, extend: { backgroundImage: { 'my-bg': "url('/')" main: 'linear-gradient(225deg, #BD7AE3 0%, #8461C9 100%)' }, boxShadow: { 'md-all': '4px 4px 6px -1px rgba(0, 0, 0, 0.1), -2px 2px 4px -1px rgba(0, 0, 0, 0.06)' } height: { 'full-vw': '100vw' }, minWidth: { '36': '9rem' }, spacing: { 80: '20rem', '38': '9.5rem', '120': '30rem', '128': '32rem', '144': '36rem', '160': '40rem', 172: 44rem, '192': '48rem', '232': '58rem', 240: '60rem', 272: '68rem', 280: '70rem', 288: '72rem', '320': '80rem', }, width: { 232: '58rem' }, zIndex: { '-10': '-10', } }, }, variants: { extend: { borderRadius: ['hover'] }, }, plugins: [], corePlugins: { preflight: false, } }
|