refactor(boilerplate): added tailwind conf and folders

This commit is contained in:
JK-le-dev 2025-10-18 13:50:13 -05:00
commit a3e52fbee3
9 changed files with 583 additions and 132 deletions

19
tailwind.config.js Normal file
View file

@ -0,0 +1,19 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
background: "rgba(var(--background))",
paragraph: "rgba(var(--paragraph))",
primary: "rgba(var(--primary))",
secondary: "rgba(var(--secondary))",
accent: "rgba(var(--accent))",
},
flex: {
0: "0 0 100%",
},
},
},
plugins: [],
};