Files
oki-podcast-reader/tailwind.config.cjs
T

23 lines
501 B
JavaScript
Raw Normal View History

2023-07-09 22:18:06 +01:00
const colors = require('tailwindcss/colors');
const config = {
content: ['./src/**/*.{html,js,md,mdx,svx,svelte,ts}', './node_modules/svhighlight/**/*.svelte'],
theme: {
extend: {
colors: {
mono: colors.slate,
primary: colors.orange,
},
transitionTimingFunction: {
smooth: 'cubic-bezier(0, 0, 0, 1.5)',
whip: `cubic-bezier(0.8, 0.3, 0.15, 1.1)`,
},
},
},
2023-07-10 16:35:58 +01:00
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
2023-07-09 22:18:06 +01:00
};
module.exports = config;