feat: add dark theme

This commit is contained in:
Kentai Radiquum 2024-08-02 20:55:01 +05:00
parent 1588039542
commit 3e72866a08
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
22 changed files with 314 additions and 162 deletions

View file

@ -11,7 +11,34 @@ module.exports = {
],
plugins: [
addIconSelectors(["mdi", "material-symbols", "twemoji", "fa6-brands"]),
require('tailwind-scrollbar'),
require("tailwind-scrollbar"),
flowbite.plugin(),
],
darkMode: "selector",
theme: {
extend: {
animation: {
bg_zoom: "bg_zoom 150ms linear",
bg_zoom_rev: "bg_zoom_rev 150ms linear",
},
keyframes: {
bg_zoom: {
"0%": {
"background-size": "100% auto",
},
"100%": {
"background-size": "110% auto",
},
},
bg_zoom_rev: {
"0%": {
"background-size": "110% auto",
},
"100%": {
"background-size": "100% auto",
},
},
},
},
},
};