17 lines
476 B
JavaScript
17 lines
476 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', 'sans-serif'],
|
|
mono: ['"SFMono-Regular"', 'Consolas', '"Liberation Mono"', 'Menlo', 'monospace'],
|
|
},
|
|
boxShadow: {
|
|
subtle: '0 10px 30px rgba(0,0,0,0.04)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|