mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
8 lines
107 B
CSS
8 lines
107 B
CSS
html {
|
|
animation: rainbow 90s infinite;
|
|
}
|
|
|
|
@keyframes rainbow {
|
|
100% { filter: hue-rotate(360deg); }
|
|
}
|