This commit is contained in:
2026-04-21 12:30:44 +09:00
commit 6ae64d2a13
15 changed files with 3292 additions and 0 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,ts}'],
theme: {
extend: {
colors: {
ink: '#111111',
line: '#c9c9c9',
muted: '#b4b1c1',
paper: '#fffdf9',
},
boxShadow: {
paper: '0 24px 64px rgba(17, 17, 17, 0.08)',
},
},
},
plugins: [],
}