audiobookshelf.audiobookshe.../tailwind.config.js

52 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-09-15 16:02:37 -05:00
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{html,js,vue}',
'./components/**/*.{html,js,vue}',
2022-12-24 12:25:32 -06:00
'./layouts/**/*.{html,js,vue}',
'./content/**/*.{md,vue}'
],
2021-09-15 16:02:37 -05:00
theme: {
extend: {
2021-09-18 10:33:59 -05:00
width: {
'15': '3.75rem',
'30': '7.5rem'
},
height: {
'15': '3.75rem',
'30': '7.5rem'
},
2021-09-15 16:02:37 -05:00
screens: {
'short': { 'raw': '(max-height: 500px)' }
},
colors: {
// bg: '#1e272e',
bg: '#373838',
yellowgreen: 'yellowgreen',
primary: '#262626',
accent: '#1ad691',
error: '#FF5252',
info: '#2196F3',
success: '#4CAF50',
successDark: '#3b8a3e',
warning: '#FB8C00'
},
cursor: {
none: 'none'
},
fontFamily: {
sans: ['Open Sans', ...defaultTheme.fontFamily.sans],
mono: ['Ubuntu Mono', ...defaultTheme.fontFamily.mono],
book: ['Gentium Book Basic', 'serif']
}
}
},
variants: {
extend: {}
2021-09-15 16:02:37 -05:00
},
plugins: [
require('@tailwindcss/typography')
]
2021-09-15 16:02:37 -05:00
}