Files
traque/server/traque-front/tailwind.config.js
2026-02-15 19:23:29 +01:00

30 lines
609 B
JavaScript

/** @type {import('tailwindcss').Config} */
export const theme = {
extend: {
colors: {
'custom-green': '#19e119',
'custom-red': '#e11919',
'custom-orange': '#fa6400',
'custom-blue': '#1e90ff',
'custom-grey': '#808080',
'custom-light-blue': '#80b3ff'
}
}
};
export const mode = 'jit';
export const content = [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
];
export const fontFamily = {
sans: ["Inter", "sans-serif"],
serif: ["Merriweather", "serif"],
};
export const plugins = [];