audiobookshelf-atv/tailwind.config.js

61 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-09-02 01:07:11 +00:00
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
options: {
safelist: [
2022-10-21 21:29:46 +00:00
'bg-success',
2023-01-15 00:01:12 +00:00
'bg-info',
'text-info'
2021-09-02 01:07:11 +00:00
]
}
},
darkMode: false,
theme: {
extend: {
screens: {
'short': { 'raw': '(max-height: 500px)' }
},
colors: {
bg: '#373838',
secondary: '#2F3030',
2021-09-02 01:07:11 +00:00
yellowgreen: 'yellowgreen',
primary: '#262626',
accent: '#1ad691',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
successDark: '#3b8a3e',
warning: '#FB8C00'
},
cursor: {
none: 'none'
},
fontFamily: {
sans: ['Source Sans Pro', ...defaultTheme.fontFamily.sans],
2023-02-12 18:16:38 +00:00
mono: ['Ubuntu Mono', ...defaultTheme.fontFamily.mono]
},
fontSize: {
xxs: '0.625rem'
2022-07-13 22:10:47 +00:00
},
maxWidth: {
'24': '6rem'
},
minWidth: {
2022-12-10 20:34:21 +00:00
'4': '1rem',
2022-12-07 23:57:42 +00:00
'8': '2rem',
'10': '2.5rem',
'12': '3rem',
'16': '4rem'
},
minHeight: {
'12': '3rem'
2021-09-02 01:07:11 +00:00
}
}
},
variants: {
extend: {},
},
plugins: [],
}