mirror of
https://github.com/Drop-OSS/drop-api-autogen.git
synced 2026-01-30 20:55:17 +01:00
25 lines
462 B
JavaScript
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",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|