echoer/frontend/tailwind.config.js

26 lines
473 B
JavaScript
Raw Normal View History

2024-12-20 23:45:25 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: "all",
content: ["./src/**/*.{rs,html,css}", "./dist/**/*.html"],
theme: {
2024-12-23 00:41:55 +08:00
extend: {
colors: {
accent: 'var(--accent-color)',
},
animation:{
progress:"5s progress linear infinite"
},
keyframes:{
progress:{
'0%':{width:'0%'},
'100%':{width:'100%'}
}
}
2024-12-23 00:41:55 +08:00
},
2024-12-20 23:45:25 +08:00
},
plugins: [],
darkMode: ['class'],
2024-12-20 23:45:25 +08:00
};