2024-12-26 17:53:50 +08:00
|
|
|
import colors from "tailwindcss/colors"
|
2025-01-28 18:22:40 +08:00
|
|
|
export const content = ["./src/**/*.{js,ts,jsx,tsx,vue}"]
|
2024-12-26 17:53:50 +08:00
|
|
|
export const darkMode = "media"
|
|
|
|
|
export const theme = {
|
|
|
|
|
fontFamily: {
|
|
|
|
|
sans: ["Graphik", "sans-serif"],
|
|
|
|
|
serif: ["Merriweather", "serif"]
|
2023-06-04 20:01:58 +08:00
|
|
|
},
|
2024-12-26 17:53:50 +08:00
|
|
|
extend: {
|
|
|
|
|
spacing: {
|
|
|
|
|
128: "32rem",
|
|
|
|
|
144: "36rem"
|
|
|
|
|
},
|
|
|
|
|
borderRadius: {
|
|
|
|
|
"4xl": "2rem"
|
2023-06-04 20:01:58 +08:00
|
|
|
}
|
2024-12-26 17:53:50 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
export const variants = {
|
|
|
|
|
extend: {
|
|
|
|
|
borderColor: ["focus-visible"],
|
|
|
|
|
opacity: ["disabled"]
|
|
|
|
|
}
|
2023-06-04 20:01:58 +08:00
|
|
|
}
|
2024-12-26 17:53:50 +08:00
|
|
|
export const plugins = []
|