Skip to content

Commit 7bd3bb4

Browse files
mjunaidcaclaude
andcommitted
feat(workspace): Enhance theme configuration with new typography and color settings
- Added rounded radius and spacious density to theme - Introduced grayscale and surface color settings for improved UI - Configured typography with JetBrains Mono font, including multiple font sources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 793d45a commit 7bd3bb4

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

apps/web/src/app/workspace/page.tsx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,42 @@ const WorkspaceContent = () => {
132132
},
133133
theme: {
134134
colorScheme: "dark",
135+
radius: 'round',
136+
density: 'spacious',
137+
color: {
138+
grayscale: {
139+
hue: 0,
140+
tint: 0
141+
},
142+
surface: {
143+
background: '#141415',
144+
foreground: '#111212'
145+
}
146+
},
147+
typography: {
148+
baseSize: 18,
149+
fontFamily: '\'JetBrains Mono\', monospace',
150+
fontFamilyMono: '\'JetBrains Mono\', monospace',
151+
fontSources: [
152+
{
153+
family: 'JetBrains Mono',
154+
style: 'normal',
155+
weight: 300,
156+
display: 'swap',
157+
src: 'https://fonts.gstatic.com/s/jetbrainsmono/v23/tDbV2o-flEEny0FZhsfKu5WU4xD1OwGtT0rU3BE.woff2',
158+
unicodeRange: 'U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF'
159+
}
160+
// ...and 9 more font sources
161+
]
162+
}
163+
135164
},
165+
136166
composer: {
137167
// Keep placeholder for now as it's useful
138168
placeholder: "Voice System Online. Press Orb to Speak...",
139169
},
170+
140171
// Simplified startScreen as per reference pattern (can be empty or minimal)
141172
startScreen: {
142173
greeting: "MISSION CONTROL ONLINE",

0 commit comments

Comments
 (0)