music-to-go/tailwind.config.cjs

17 lines
260 B
JavaScript
Raw Normal View History

2024-10-07 01:21:13 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
2024-10-08 00:37:20 +00:00
"./src/**/*.{html,templ,go}",
2024-10-07 01:21:13 +00:00
],
theme: {
2024-10-27 22:44:51 +00:00
extend: {
colors: {
"c-bg": "var(--c-bg)",
"c-on-bg": "var(--c-on-bg)",
}
},
2024-10-07 01:21:13 +00:00
},
plugins: [],
}