mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 01:49:40 +05:00
feat: add dark theme
This commit is contained in:
parent
1588039542
commit
3e72866a08
22 changed files with 314 additions and 162 deletions
|
@ -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",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue