From 9d1f73f3ad002019a091970e37cd7bcdee3dedc5 Mon Sep 17 00:00:00 2001 From: sirpiglr <49359077-sirpiglr@users.noreply.replit.com> Date: Tue, 9 Dec 2025 00:31:54 +0000 Subject: [PATCH] Update application theme to use a purple color scheme Replaces blue color gradients and variables with purple alternatives across CSS and HTML files to align with the desired application theme. Replit-Commit-Author: Agent Replit-Commit-Session-Id: aed2e46d-25bb-4b73-81a1-bb9e8437c261 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: f9f1a4eb-2832-4cc3-92fc-6f966658f686 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3bdfff67-975a-46ad-9845-fbb6b4a4c4b5/aed2e46d-25bb-4b73-81a1-bb9e8437c261/K1dCpNm Replit-Helium-Checkpoint-Created: true --- .replit | 2 +- aethex-bot/public/css/aethex-theme.css | 36 +++++++++++----------- aethex-bot/public/dashboard.html | 42 +++++++++++++------------- aethex-bot/public/index.html | 42 +++++++++++++------------- 4 files changed, 61 insertions(+), 61 deletions(-) diff --git a/.replit b/.replit index dddeff2..a6a7229 100644 --- a/.replit +++ b/.replit @@ -19,7 +19,7 @@ localPort = 5000 externalPort = 80 [[ports]] -localPort = 36951 +localPort = 33439 externalPort = 3000 [workflows] diff --git a/aethex-bot/public/css/aethex-theme.css b/aethex-bot/public/css/aethex-theme.css index bafa34f..20a6d6c 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 */ - --aethex-50: 250 100% 97%; - --aethex-100: 250 100% 95%; - --aethex-200: 250 100% 90%; - --aethex-300: 250 100% 80%; - --aethex-400: 250 100% 70%; - --aethex-500: 250 100% 60%; - --aethex-600: 250 100% 50%; - --aethex-700: 250 100% 40%; - --aethex-800: 250 100% 30%; - --aethex-900: 250 100% 20%; - --aethex-950: 250 100% 10%; + /* 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%; - /* Neon Colors for Accents */ + /* Neon Colors for Accents - PURPLE Theme */ --neon-purple: 280 100% 70%; - --neon-blue: 210 100% 70%; - --neon-green: 120 100% 70%; + --neon-violet: 270 100% 70%; + --neon-magenta: 300 100% 70%; --neon-yellow: 50 100% 70%; } } @@ -295,13 +295,13 @@ } .text-gradient { - @apply bg-gradient-to-r from-aethex-400 via-neon-blue to-aethex-600 bg-clip-text text-transparent; + @apply bg-gradient-to-r from-aethex-400 via-neon-purple to-aethex-600 bg-clip-text text-transparent; background-size: 200% 200%; animation: gradient-shift 3s ease-in-out infinite; } .text-gradient-purple { - @apply bg-gradient-to-r from-neon-purple via-aethex-500 to-neon-blue bg-clip-text text-transparent; + @apply bg-gradient-to-r from-neon-purple via-aethex-500 to-neon-purple bg-clip-text text-transparent; background-size: 200% 200%; animation: gradient-shift 4s ease-in-out infinite; } @@ -316,7 +316,7 @@ .border-gradient::before { content: ""; - @apply absolute inset-0 rounded-[inherit] p-[1px] bg-gradient-to-r from-aethex-400 via-neon-blue to-aethex-600; + @apply absolute inset-0 rounded-[inherit] p-[1px] bg-gradient-to-r from-aethex-400 via-neon-purple to-aethex-600; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); diff --git a/aethex-bot/public/dashboard.html b/aethex-bot/public/dashboard.html index bca49cd..ec9b018 100644 --- a/aethex-bot/public/dashboard.html +++ b/aethex-bot/public/dashboard.html @@ -9,20 +9,20 @@