working on dark mode

This commit is contained in:
Gisbi
2023-08-02 19:53:55 +02:00
parent ffb1098a15
commit 64c417c1be
27 changed files with 162 additions and 108 deletions
+8 -1
View File
@@ -1,6 +1,7 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
@@ -10,7 +11,13 @@ module.exports = {
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
extend: {
colors: {
blue: {
925: "rgb(26, 47, 96)",
},
},
},
},
plugins: [],
};