Initial commit

This commit is contained in:
2026-05-26 12:11:14 +07:00
commit 9fdd78e737
117 changed files with 10579 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'noctune-teal': '#1a9b8f',
'noctune-cream': '#f5f0dc',
'noctune-yellow': '#ffd700',
'noctune-orange': '#ff6b35',
'noctune-dark': '#1a1a1a',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['Space Mono', 'monospace'],
},
},
},
plugins: [],
}