adrema-form/tailwind.config.js

27 lines
544 B
JavaScript
Raw Normal View History

2023-12-24 02:24:48 +01:00
/** @type {import('tailwindcss').Config} */
export default {
2024-01-30 01:56:57 +01:00
content: ["./src/**/*.vue"],
theme: {
extend: {
colors: {
edit: {
DEFAULT: "hsl(20, 77%, 55%)",
2023-12-24 02:24:48 +01:00
},
2024-01-30 01:56:57 +01:00
primary: {
DEFAULT: "var(--primary)",
},
secondary: {
DEFAULT: "var(--secondary)",
},
font: {
DEFAULT: "var(--font)",
},
circle: {
DEFAULT: "var(--circle)",
},
},
2023-12-24 02:24:48 +01:00
},
2024-01-30 01:56:57 +01:00
},
plugins: [require("@tailwindcss/container-queries")],
2023-12-24 02:24:48 +01:00
};