This commit is contained in:
2026-01-07 10:33:09 +00:00
parent c2559bbc93
commit 13745ac89e
42 changed files with 4526 additions and 0 deletions

21
web/tailwind.config.cjs Normal file
View File

@@ -0,0 +1,21 @@
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
amber: colors.amber,
slate: colors.slate,
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};