Files
2026-08-03 19:37:45 +08:00

23 lines
674 B
JavaScript

module.exports = {
content: ["./src/**/*.{js,jsx}"],
theme: {
extend: {
colors: {
accent: "#2f7cf6"
},
fontFamily: {
// Rounded stack: first installed font wins, falling back to the
// locally available Maple Mono NF CN for Chinese.
sans: [
"MiSans", "HarmonyOS Sans SC", "Nunito", "Quicksand", "Varela Round",
"Maple Mono NF CN", "Microsoft YaHei UI", "Microsoft YaHei"
]
},
screens: {
narrow: { max: "340px" }
}
}
},
plugins: []
};