From 58d9f5eea66fa5b20ba4281c76d2b7ca757f3554 Mon Sep 17 00:00:00 2001 From: Luca Date: Tue, 17 Jan 2023 13:12:47 +0100 Subject: [PATCH] Adjust rainbow animation --- assets/_animations.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/_animations.scss b/assets/_animations.scss index c089ec0..63a1cd3 100644 --- a/assets/_animations.scss +++ b/assets/_animations.scss @@ -1,9 +1,9 @@ @keyframes rainbow { 0% { color: #ff0000; } - 16.66% { color: #ff8000; } - 33.33% { color: #ffff00; } - 50% { color: #00ff00; } + 16.66% { color: #ffff00; } + 33.33% { color: #00ff00; } + 50% { color: #00ffff; } 66.66% { color: #0000ff; } - 83.33% { color: #8000ff; } + 83.33% { color: #ff00ff; } 100% { color: #ff0000; } }