19 lines
374 B
JavaScript
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: [],
|
|
}
|