el.xwx.moe/tailwind.config.js

24 lines
429 B
JavaScript
Raw Normal View History

2023-01-22 15:39:35 -06:00
/** @type {import('tailwindcss').Config} */
2023-05-28 12:22:01 -05:00
2023-01-22 15:39:35 -06:00
module.exports = {
2023-08-02 12:53:55 -05:00
darkMode: "class",
2023-01-22 15:39:35 -06:00
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
2023-05-28 12:22:01 -05:00
// For the "layouts" directory
"./layouts/**/*.{js,ts,jsx,tsx}",
2023-01-22 15:39:35 -06:00
],
theme: {
2023-08-02 12:53:55 -05:00
extend: {
colors: {
blue: {
925: "rgb(26, 47, 96)",
},
},
},
2023-01-22 15:39:35 -06:00
},
plugins: [],
};