auto-save 2026-05-18 10:44 (+6, ~2)

This commit is contained in:
2026-05-18 10:46:21 +08:00
parent 0accb73400
commit 494779dc13
20 changed files with 772 additions and 0 deletions

16
tailwind.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import type { Config } from 'tailwindcss';
const config: Config = {
content: ['./src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
ink: '#0a0a0a',
paper: '#fafafa',
accent: '#ff6b35',
},
},
},
plugins: [],
};
export default config;