From 4ee6968d7eeaffeaa4d353fff92910220a269716 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Wed, 1 Apr 2026 18:18:37 +0500 Subject: [PATCH] chore: rebrand to new terracotta logo, update Web UI color scheme Replace purple/cyan cyberpunk theme with warm terracotta palette matching new SVG logo. Update README to use soup_logo_svg.svg. Update chart colors in app.js to match new palette (#C0512D primary, #E8975A warm accent). --- README.md | 2 +- soup_cli/ui/static/app.js | 16 ++++++++-------- soup_cli/ui/static/index.html | 2 +- soup_cli/ui/static/logo.svg | 4 ++++ soup_cli/ui/static/style.css | 30 +++++++++++++++--------------- 5 files changed, 29 insertions(+), 25 deletions(-) create mode 100644 soup_cli/ui/static/logo.svg diff --git a/README.md b/README.md index bcb869e..d337b8f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- Soup + Soup

Soup

diff --git a/soup_cli/ui/static/app.js b/soup_cli/ui/static/app.js index e236e5b..4fddd2f 100644 --- a/soup_cli/ui/static/app.js +++ b/soup_cli/ui/static/app.js @@ -276,8 +276,8 @@ function renderCharts(metrics) { datasets: [{ label: 'Loss', data: losses, - borderColor: '#8b6cc7', - backgroundColor: 'rgba(139, 108, 199, 0.1)', + borderColor: '#c0512d', + backgroundColor: 'rgba(192, 81, 45, 0.1)', fill: true, tension: 0.3, pointRadius: 0, @@ -289,8 +289,8 @@ function renderCharts(metrics) { maintainAspectRatio: false, plugins: { legend: { display: false } }, scales: { - x: { title: { display: true, text: 'Step', color: '#8890a8' }, ticks: { color: '#8890a8' }, grid: { color: 'rgba(42,48,80,0.5)' } }, - y: { title: { display: true, text: 'Loss', color: '#8890a8' }, ticks: { color: '#8890a8' }, grid: { color: 'rgba(42,48,80,0.5)' } }, + x: { title: { display: true, text: 'Step', color: '#a09088' }, ticks: { color: '#a09088' }, grid: { color: 'rgba(58,48,64,0.5)' } }, + y: { title: { display: true, text: 'Loss', color: '#a09088' }, ticks: { color: '#a09088' }, grid: { color: 'rgba(58,48,64,0.5)' } }, }, }, }); @@ -306,8 +306,8 @@ function renderCharts(metrics) { datasets: [{ label: 'Learning Rate', data: lrs, - borderColor: '#5ce0d8', - backgroundColor: 'rgba(92, 224, 216, 0.1)', + borderColor: '#e8975a', + backgroundColor: 'rgba(232, 151, 90, 0.1)', fill: true, tension: 0.3, pointRadius: 0, @@ -319,8 +319,8 @@ function renderCharts(metrics) { maintainAspectRatio: false, plugins: { legend: { display: false } }, scales: { - x: { title: { display: true, text: 'Step', color: '#8890a8' }, ticks: { color: '#8890a8' }, grid: { color: 'rgba(42,48,80,0.5)' } }, - y: { title: { display: true, text: 'LR', color: '#8890a8' }, ticks: { color: '#8890a8' }, grid: { color: 'rgba(42,48,80,0.5)' } }, + x: { title: { display: true, text: 'Step', color: '#a09088' }, ticks: { color: '#a09088' }, grid: { color: 'rgba(58,48,64,0.5)' } }, + y: { title: { display: true, text: 'LR', color: '#a09088' }, ticks: { color: '#a09088' }, grid: { color: 'rgba(58,48,64,0.5)' } }, }, }, }); diff --git a/soup_cli/ui/static/index.html b/soup_cli/ui/static/index.html index fe6b941..907470c 100644 --- a/soup_cli/ui/static/index.html +++ b/soup_cli/ui/static/index.html @@ -11,7 +11,7 @@