2021-09-01 20:07:11 -05:00
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
purge: {
|
|
|
|
options: {
|
|
|
|
safelist: [
|
|
|
|
'bg-success'
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
darkMode: false,
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
screens: {
|
|
|
|
'short': { 'raw': '(max-height: 500px)' }
|
|
|
|
},
|
|
|
|
colors: {
|
|
|
|
bg: '#373838',
|
2021-11-14 19:59:34 -06:00
|
|
|
secondary: '#2F3030',
|
2021-09-01 20:07:11 -05:00
|
|
|
yellowgreen: 'yellowgreen',
|
|
|
|
primary: '#262626',
|
|
|
|
accent: '#1ad691',
|
|
|
|
error: '#FF5252',
|
|
|
|
info: '#2196F3',
|
|
|
|
success: '#4CAF50',
|
|
|
|
successDark: '#3b8a3e',
|
|
|
|
warning: '#FB8C00'
|
|
|
|
},
|
|
|
|
cursor: {
|
|
|
|
none: 'none'
|
|
|
|
},
|
|
|
|
fontFamily: {
|
2021-10-16 15:50:13 -05:00
|
|
|
sans: ['Source Sans Pro', ...defaultTheme.fontFamily.sans],
|
2021-09-01 20:07:11 -05:00
|
|
|
mono: ['Ubuntu Mono', ...defaultTheme.fontFamily.mono],
|
|
|
|
book: ['Gentium Book Basic', 'serif']
|
2022-07-04 14:59:56 -05:00
|
|
|
},
|
|
|
|
fontSize: {
|
|
|
|
xxs: '0.625rem'
|
2022-07-13 17:10:47 -05:00
|
|
|
},
|
|
|
|
maxWidth: {
|
|
|
|
'24': '6rem'
|
2021-09-01 20:07:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
variants: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|