Files
archived-drop-api-autogen/tailwind.config.js
2025-08-09 23:13:50 +10:00

25 lines
462 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./app/components/**/*.{js,vue,ts}",
"./app/layouts/**/*.vue",
"./app/pages/**/*.vue",
"./app/plugins/**/*.{js,ts}",
"./app/app.vue",
"./app/error.vue",
],
theme: {
extend: {
fontFamily: {
sans: ["Inter"],
display: ["Motiva Sans"],
},
colors: {
zinc: {
925: "#111112",
},
},
},
},
};