From 83f87c851f1762fb4046b7a41c9e86d7fcfa50f2 Mon Sep 17 00:00:00 2001 From: MonkeyGG2 Date: Wed, 9 Aug 2023 16:50:51 +0530 Subject: [PATCH] changed a few colors --- css/loading.css | 2 +- js/loading.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/css/loading.css b/css/loading.css index b7c6cb69..b755fffc 100644 --- a/css/loading.css +++ b/css/loading.css @@ -204,7 +204,7 @@ section { } .hexagonGrid .row .hexagon:hover::before { - background: #3dd429; + background: #72acb1; opacity: 1; transition: 0s; } diff --git a/js/loading.js b/js/loading.js index 000d7e4d..af381978 100644 --- a/js/loading.js +++ b/js/loading.js @@ -59,7 +59,7 @@ class Particle { draw() { ctx.beginPath(); ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2, false); - ctx.fillStyle = '#72C100'; + ctx.fillStyle = '#a3f6fd'; ctx.fill(); } @@ -108,7 +108,7 @@ function init() { let y = (Math.random() * ((innerWidth - size * 2) - (size * 2)) + size * 2); let directionX = (Math.random() * 5) - 2.5; let directionY = (Math.random() * 5) - 2.5; - let color = '#72C100'; + let color = '#a3f6fd'; particlesArray.push(new Particle(x, y, directionX, directionY, size, color)); } }