Files
planner.sori.studio/tailwind.config.js
2026-04-21 12:30:44 +09:00

19 lines
374 B
JavaScript

/** @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: [],
}