audiobookshelf/client/tailwind.config.js

112 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-08-18 00:01:11 +02:00
module.exports = {
purge: {
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'templates/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js'
],
safelist: [
'bg-success',
'bg-red-600',
'bg-yellow-400',
'text-green-500',
'py-1.5',
'bg-info',
2022-07-27 01:54:32 +02:00
'px-1.5',
'min-w-5',
'w-3.5',
'h-3.5',
'border-warning',
'mb-px',
'text-1.5xl'
],
},
2021-08-18 00:01:11 +02:00
theme: {
extend: {
2021-08-19 03:18:44 +02:00
height: {
2021-11-08 02:52:13 +01:00
'7.5': '1.75rem',
'18': '4.5rem',
'45': '11.25rem'
2021-11-08 02:52:13 +01:00
},
width: {
'18': '4.5rem'
2021-08-19 03:18:44 +02:00
},
2021-10-31 01:50:49 +02:00
maxWidth: {
'6': '1.5rem',
'12': '3rem',
'16': '4rem',
'20': '5rem',
2021-10-31 01:50:49 +02:00
'24': '6rem',
'32': '8rem',
'40': '10rem',
2021-10-31 01:50:49 +02:00
'48': '12rem',
2022-07-27 01:54:32 +02:00
'52': '13rem',
2021-10-31 01:50:49 +02:00
'64': '16rem',
'80': '20rem'
},
minWidth: {
2022-07-27 01:54:32 +02:00
'5': '1.25rem',
2021-10-31 01:50:49 +02:00
'6': '1.5rem',
'8': '2rem',
2022-07-27 01:54:32 +02:00
'10': '2.5rem',
2021-10-31 01:50:49 +02:00
'12': '3rem',
'16': '4rem',
2022-06-04 22:51:00 +02:00
'20': '5rem',
2021-10-31 01:50:49 +02:00
'24': '6rem',
'32': '8rem',
'48': '12rem',
'64': '16rem',
'80': '20rem'
},
2021-09-28 13:44:40 +02:00
spacing: {
2023-01-08 16:38:37 +01:00
'18': '4.5rem',
2021-09-28 13:44:40 +02:00
'-54': '-13.5rem'
},
rotate: {
'-60': '-60deg'
},
2021-08-18 00:01:11 +02:00
colors: {
bg: '#373838',
primary: '#232323',
2021-08-18 00:01:11 +02:00
accent: '#1ad691',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
warning: '#FB8C00',
2021-09-01 20:47:18 +02:00
darkgreen: 'rgb(34,127,35)',
2021-08-18 00:01:11 +02:00
'black-50': '#bbbbbb',
'black-100': '#666666',
'black-200': '#555555',
'black-300': '#444444',
'black-400': '#333333',
'black-500': '#222222',
'black-600': '#111111',
'black-700': '#101010'
},
cursor: {
none: 'none'
},
fontFamily: {
2022-07-03 03:02:43 +02:00
sans: ['Source Sans Pro'],
mono: ['Ubuntu Mono']
},
fontSize: {
xxs: '0.625rem',
'1.5xl': '1.375rem',
'2.5xl': '1.6875rem'
},
zIndex: {
'50': 50,
'60': 60
2021-08-18 00:01:11 +02:00
}
}
},
variants: {
extend: {},
},
plugins: [],
}