From d9c6f490f0f692bac7e6c0cf4eb7a4ab22e7b2d7 Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Thu, 16 Oct 2025 09:50:47 -0500 Subject: [PATCH] Add new [W13] logo design to Warehouse13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace ◆ symbol with styled [W13] logo - Logo uses monospace font with blue border and background - Implemented in both Angular frontend and static HTML - Added .logo CSS class with custom styling: - Courier New monospace font - Blue (#60a5fa) color and border - Semi-transparent background - Compact bracket style representing warehouse/storage containers The logo maintains the warehouse/storage theme while being more distinctive and modern. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- frontend/src/app/app.ts | 2 +- frontend/src/styles.css | 15 +++++++++++++++ static/css/styles.css | 15 +++++++++++++++ static/index.html | 2 +- 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/app.ts b/frontend/src/app/app.ts index bd53617..633f52c 100644 --- a/frontend/src/app/app.ts +++ b/frontend/src/app/app.ts @@ -11,7 +11,7 @@ import { ArtifactService } from './services/artifact'; template: `
-

◆ Warehouse13

+

Warehouse13

{{ deploymentMode }} {{ storageBackend }} diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 0d04177..e2c7f1b 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -33,6 +33,21 @@ header { header h1 { font-size: 28px; font-weight: 600; + display: flex; + align-items: center; + gap: 12px; +} + +.logo { + font-family: 'Courier New', monospace; + font-weight: 700; + font-size: 24px; + color: #60a5fa; + letter-spacing: -1px; + padding: 2px 4px; + border: 2px solid #60a5fa; + border-radius: 4px; + background: rgba(96, 165, 250, 0.1); } .header-info { diff --git a/static/css/styles.css b/static/css/styles.css index 58bcca3..edee773 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -33,6 +33,21 @@ header { header h1 { font-size: 28px; font-weight: 600; + display: flex; + align-items: center; + gap: 12px; +} + +.logo { + font-family: 'Courier New', monospace; + font-weight: 700; + font-size: 24px; + color: #60a5fa; + letter-spacing: -1px; + padding: 2px 4px; + border: 2px solid #60a5fa; + border-radius: 4px; + background: rgba(96, 165, 250, 0.1); } .header-info { diff --git a/static/index.html b/static/index.html index bedc1ca..4ad1dd1 100644 --- a/static/index.html +++ b/static/index.html @@ -10,7 +10,7 @@
-

◆ Warehouse13

+

Warehouse13