mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-04-11 00:30:19 +02:00
30 lines
609 B
JavaScript
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 = [];
|