jackmerrill.com/tailwind.config.js
2021-04-13 21:39:58 -05:00

27 lines
563 B
JavaScript

module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {
backdropFilter: { // defaults to {}
'none': 'none',
'blur-full': 'blur(1)',
},
backgroundImage: theme => ({
'stryx': 'url(/img/Stryx.png)'
}),
colors: {
'tailwind': '#38B2AC',
'github': '#181717',
'twitter': '#1DA1F2',
}
},
},
variants: {
},
plugins: [
require('tailwindcss-filters'),
],
}