remove gruvbox dependencies in base.css and rainbow.css

This commit is contained in:
Akbar Rahman 2022-04-13 17:21:15 +01:00
parent 3f21f7152b
commit 3709c37527
Signed by: alvierahman90
GPG Key ID: 20609519444A1269
2 changed files with 9 additions and 12 deletions

View File

@ -3,8 +3,8 @@
--fg: var(--dark);
--bg: var(--light);
--a: var(--gruvbox-blue);
--a-visited: var(--gruvbox-purple);
--a: var(--blue);
--a-visited: var(--purple);
}
body {

View File

@ -1,5 +1,3 @@
@import url("https://styles.alv.cx/modules/colors/gruvbox.css");
:root {
--rainbow-duration: 8s;
}
@ -7,12 +5,11 @@
.rainbow { animation: rainbow-animation var(--rainbow-duration) infinite alternate; }
@keyframes rainbow-animation {
0% { color: var(--gruvbox-blue); }
14.3% { color: var(--gruvbox-aqua); }
28.6% { color: var(--gruvbox-green); }
42.9% { color: var(--gruvbox-yellow); }
57.1% { color: var(--gruvbox-orange); }
71.4% { color: var(--gruvbox-red); }
85.7% { color: var(--gruvbox-purple); }
100% { color: var(--gruvbox-blue); }
0% { color: var(--blue); }
16.7% { color: var(--green); }
33.3% { color: var(--yellow); }
50.0% { color: var(--orange); }
66.7% { color: var(--red); }
83.3% { color: var(--purple); }
100% { color: var(--blue); }
}