20 lines
423 B
JavaScript
20 lines
423 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
'playful': ['Nunito', 'Quicksand', 'Poppins', 'system-ui', 'sans-serif'],
|
|
'clean': ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
|
|
},
|
|
backdropBlur: {
|
|
xs: '2px',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|