mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
39 lines
973 B
JavaScript
39 lines
973 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
|
"gradient-conic":
|
|
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
|
|
},
|
|
colors: {
|
|
brandblue: "#14163d",
|
|
hoverblue: "#3e4073",
|
|
brandtan: "#d3b488",
|
|
hovertan: "#947750",
|
|
brandbrown: "#3d1e05",
|
|
brandmidblue: "#3943b7",
|
|
},
|
|
textColor: {
|
|
brandblue: "#14163d",
|
|
hoverblue: "#3e4073",
|
|
brandtan: "#d3b488",
|
|
hovertan: "#947750",
|
|
brandbrown: "#3d1e05",
|
|
brandmidblue: "#3943b7",
|
|
},
|
|
},
|
|
},
|
|
variants: {
|
|
extend: {
|
|
visibility: ["group-hover"],
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|