mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
27 lines
602 B
JavaScript
27 lines
602 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'custom-green': '#19e119',
|
|
'custom-red': '#e11919',
|
|
'custom-orange': '#fa6400',
|
|
'custom-blue': '#1e90ff',
|
|
'custom-grey': '#808080',
|
|
'custom-light-blue': '#80b3ff'
|
|
}
|
|
}
|
|
},
|
|
mode: 'jit',
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
fontFamily: {
|
|
sans: ["Inter", "sans-serif"],
|
|
serif: ["Merriweather", "serif"],
|
|
},
|
|
plugins: [],
|
|
};
|