Files
valere.dev/tailwind.config.js
valere 7355b1a9b4
All checks were successful
Deploy valere.dev / deploy (push) Successful in 10s
add cvs
2025-10-29 20:56:34 +01:00

23 lines
487 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
colors: {
primary: "#f2c200", // yellow
secondary: "#e2702c", // orange
alert: "#c63f42", // red
surface: "#4f3d4b", // purple
background: "#253e54", // blue
},
},
},
};