From 4fa6125179eca2466c7c88d51e16485f759b2b58 Mon Sep 17 00:00:00 2001 From: sirpiglr <49359077-sirpiglr@users.noreply.replit.com> Date: Tue, 9 Dec 2025 00:56:58 +0000 Subject: [PATCH] Update website theme to blue and fix leaderboard link and support URL Updated CSS and HTML files to change the theme from purple to blue, updated the support link to discord.gg/athx, and implemented a redirect for the /leaderboard route to the dashboard page. Replit-Commit-Author: Agent Replit-Commit-Session-Id: aed2e46d-25bb-4b73-81a1-bb9e8437c261 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: cfc706c7-9dea-4636-b8b6-cad88a7185f7 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/aed2e46d-25bb-4b73-81a1-bb9e8437c261/xrPDlOm Replit-Helium-Checkpoint-Created: true --- .replit | 4 ++ aethex-bot/public/css/aethex-theme.css | 32 +++++++-------- aethex-bot/public/dashboard.html | 57 ++++++++++++++++---------- aethex-bot/public/index.html | 50 +++++++++++----------- aethex-bot/server/webServer.js | 4 ++ 5 files changed, 84 insertions(+), 63 deletions(-) diff --git a/.replit b/.replit index d591502..1d7fd24 100644 --- a/.replit +++ b/.replit @@ -17,6 +17,10 @@ expertMode = true localPort = 5000 externalPort = 80 +[[ports]] +localPort = 35631 +externalPort = 3000 + [workflows] runButton = "Project" diff --git a/aethex-bot/public/css/aethex-theme.css b/aethex-bot/public/css/aethex-theme.css index 20a6d6c..9fc3f1f 100644 --- a/aethex-bot/public/css/aethex-theme.css +++ b/aethex-bot/public/css/aethex-theme.css @@ -59,23 +59,23 @@ --sidebar-border: 240 3.7% 15.9%; --sidebar-ring: 217.2 91.2% 59.8%; - /* AeThex Brand Colors - PURPLE Theme */ - --aethex-50: 270 100% 97%; - --aethex-100: 270 100% 95%; - --aethex-200: 270 100% 90%; - --aethex-300: 270 100% 80%; - --aethex-400: 270 100% 70%; - --aethex-500: 270 100% 60%; - --aethex-600: 270 100% 50%; - --aethex-700: 270 100% 40%; - --aethex-800: 270 100% 30%; - --aethex-900: 270 100% 20%; - --aethex-950: 270 100% 10%; + /* AeThex Brand Colors - BLUE Theme */ + --aethex-50: 220 100% 97%; + --aethex-100: 220 100% 95%; + --aethex-200: 220 100% 90%; + --aethex-300: 220 100% 80%; + --aethex-400: 220 100% 70%; + --aethex-500: 220 100% 60%; + --aethex-600: 220 100% 50%; + --aethex-700: 220 100% 40%; + --aethex-800: 220 100% 30%; + --aethex-900: 220 100% 20%; + --aethex-950: 220 100% 10%; - /* Neon Colors for Accents - PURPLE Theme */ - --neon-purple: 280 100% 70%; - --neon-violet: 270 100% 70%; - --neon-magenta: 300 100% 70%; + /* Neon Colors for Accents - BLUE Theme */ + --neon-blue: 210 100% 70%; + --neon-cyan: 190 100% 70%; + --neon-purple: 270 100% 70%; --neon-yellow: 50 100% 70%; } } diff --git a/aethex-bot/public/dashboard.html b/aethex-bot/public/dashboard.html index 0d33045..d11ed13 100644 --- a/aethex-bot/public/dashboard.html +++ b/aethex-bot/public/dashboard.html @@ -9,20 +9,20 @@