drop-server-bak/tailwind.config.js

25 lines
438 B
JavaScript
Raw Permalink Normal View History

2024-10-04 14:43:02 +10:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
fontFamily: {
2024-10-07 22:35:54 +11:00
sans: ["Inter"],
2024-10-08 16:13:46 +11:00
display: ["Motiva Sans"],
},
colors: {
zinc: {
925: "#111112",
},
},
2024-10-04 14:43:02 +10:00
},
},
2024-10-08 16:13:46 +11:00
};