v0.1.17 Tailwind 부분 도입 기반 추가

This commit is contained in:
2026-04-13 18:57:55 +09:00
parent f10f9c5e37
commit 033ac60ac2
7 changed files with 34 additions and 5 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
module.exports = {
content: [
"./*.hbs",
"./partials/**/*.hbs",
"./assets/built/theme.js"
],
theme: {
extend: {
colors: {
brand: "#ff4400",
"brand-strong": "#e13b00"
}
}
},
corePlugins: {
preflight: false
}
}