el.xwx.moe/tailwind.config.js
2023-08-02 19:53:55 +02:00

24 lines
429 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
// For the "layouts" directory
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
blue: {
925: "rgb(26, 47, 96)",
},
},
},
},
plugins: [],
};