This commit is contained in:
2026-04-06 18:44:02 +05:00
commit d775fbb9ba
431 changed files with 31234 additions and 0 deletions

17
tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import('tailwindcss').Config} */
export default {
prefix: 'tw-',
content: ["./resources/**/*.blade.php"],
theme: {
extend: {
colors: {
'dark-green': '#323329',
'dark-green-hover': '#2a2a22',
'light-gray': '#E6E2DF',
'orange': '#C47C4C',
'dark-orange': '#b36b3c'
},
},
},
plugins: [],
}