polish(app): splash wordmark in brand orange + version line

CodeBurn wordmark on the splash now uses --accent (matching the
website/sidebar brand treatment) with the app version (v0.1.0, from
package.json at build time) in muted small text below. App version
bumped 0.0.0 -> 0.1.0.

253/253, build green.
This commit is contained in:
iamtoruk 2026-07-16 05:15:35 -07:00
parent 4b1426eab2
commit 1320807de2
3 changed files with 7 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
"name": "codeburn-desktop",
"private": true,
"version": "0.0.0",
"version": "0.1.0",
"description": "CodeBurn Desktop — Electron app fed by the codeburn CLI",
"main": "dist/electron/main.js",
"scripts": {

View file

@ -3,6 +3,7 @@ import { createPortal } from 'react-dom'
import { FlameMark } from './FlameMark'
import { motionClass, reducedMotion } from '../lib/motion'
import { version } from '../../package.json'
const MIN_ON_SCREEN_MS = 600
const CROSSFADE_MS = 250
@ -58,6 +59,7 @@ export function Splash({ hasData, hasError }: { hasData: boolean; hasError: bool
<FlameMark size={76} />
</div>
<div className="splash-word">CodeBurn</div>
<div className="splash-version">v{version}</div>
</div>,
document.body,
)

View file

@ -860,7 +860,10 @@ td:first-child { font-size: var(--fs-body); font-weight: var(--fw-body); }
opacity: 0.5;
}
.splash-word {
font-size: var(--fs-kpi); font-weight: var(--fw-strong); letter-spacing: -0.01em; color: var(--ink);
font-size: var(--fs-kpi); font-weight: var(--fw-strong); letter-spacing: -0.01em; color: var(--accent);
}
.splash-version {
margin-top: 2px; font-size: var(--fs-label); font-weight: var(--fw-body); color: var(--mut);
}
.splash-lit .splash-mark {