Update brand logo colors to reflect new visual identity

Modify SVG logo definition in server/routes.ts to change gradient stop colors from #6366f1 and #8b5cf6 to #da234d for both stops.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 946a0075-7e32-454b-b348-9e7f576d7f45
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/60d372ff-2c10-46c7-b01b-10c3435136b0/946a0075-7e32-454b-b348-9e7f576d7f45/sBm86D3
This commit is contained in:
sebastjanartic 2025-09-04 14:37:22 +00:00
parent bfea83b609
commit abfe0dabea
2 changed files with 4 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -811,8 +811,8 @@ export async function registerRoutes(app: Express): Promise<Server> {
const svg = `<svg width="${size}" height="${size}" xmlns="http://www.w3.org/2000/svg"> const svg = `<svg width="${size}" height="${size}" xmlns="http://www.w3.org/2000/svg">
<defs> <defs>
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%"> <linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#6366f1;stop-opacity:1" /> <stop offset="0%" style="stop-color:#da234d;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" /> <stop offset="100%" style="stop-color:#da234d;stop-opacity:1" />
</linearGradient> </linearGradient>
</defs> </defs>
@ -836,8 +836,8 @@ export async function registerRoutes(app: Express): Promise<Server> {
const svg = `<svg width="${size}" height="${size}" xmlns="http://www.w3.org/2000/svg"> const svg = `<svg width="${size}" height="${size}" xmlns="http://www.w3.org/2000/svg">
<defs> <defs>
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%"> <linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#6366f1;stop-opacity:1" /> <stop offset="0%" style="stop-color:#da234d;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8b5cf6;stop-opacity:1" /> <stop offset="100%" style="stop-color:#da234d;stop-opacity:1" />
</linearGradient> </linearGradient>
</defs> </defs>