Files
tonePage/tonecn/tailwind.config.js
2024-09-29 22:51:17 +08:00

21 lines
327 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/**/*.{vue,js,ts,jsx,tsx}",
"./index.html",
],
theme: {
extend: {
colors: {
'default-bg': '#fafafa',
'dark-bg': '#1a1a1a',
},
screens: {
'xs': '440px'
}
},
},
plugins: [],
}