reverse-shell-generator/css/dark-mode.css
Chris Papadopoulos b25bd20ef3 Dark/Light Mode
Dark & "Light" mode added via a toggle button.
2021-02-27 22:39:17 -05:00

23 lines
518 B
CSS

[data-theme="dark"] {
background-color: pink !important;
}
[data-theme="dark"] .bg-light {
background-color: #333 !important;
}
[data-theme="dark"] .bg-white {
background-color: #000 !important;
}
[data-theme="dark"] .rainbow {
font-family: 'Pacifico', cursive;
text-shadow: 2px 2px 4px #000000;
font-size:40px;
-webkit-animation: rainbow 5s infinite;
-ms-animation: rainbow 5s infinite;
animation: rainbow 5s infinite;
font-family: ComicMono;
src: url(ComicMono.ttf);
}