From 3709c375271dacd8013480f237bfda309f96c600 Mon Sep 17 00:00:00 2001 From: Alvie Rahman Date: Wed, 13 Apr 2022 17:21:15 +0100 Subject: [PATCH] remove gruvbox dependencies in base.css and rainbow.css --- base.css | 4 ++-- modules/rainbow.css | 17 +++++++---------- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/base.css b/base.css index 74e679f..62553e5 100644 --- a/base.css +++ b/base.css @@ -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 { diff --git a/modules/rainbow.css b/modules/rainbow.css index 06db4fe..a9da329 100644 --- a/modules/rainbow.css +++ b/modules/rainbow.css @@ -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); } }