Files
drop-website/tailwind.config.js
T
2025-04-20 23:57:17 +10:00

26 lines
507 B
JavaScript

/** @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: {
sans: ["Inter", "San Francisco", "sans-serif"],
display: ["Motiva Sans", "Arial", "sans-serif"],
},
colors: {
zinc: {
925: "#111112",
},
},
},
},
plugins: [],
};