Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/lib/look.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export type LookPreset =
| 'classic'
| 'graphite'
| 'midnight'
| 'indigo'
| 'ember'
| 'glacier'
Expand All @@ -24,6 +25,11 @@ export const LOOK_PRESETS: LookPresetOption[] = [
label: 'Graphite',
description: 'Cool neon blue with subtle glow',
},
{
id: 'midnight',
label: 'Midnight',
description: 'Graphite with pure black terminals',
},
{
id: 'classic',
label: 'Classic',
Expand Down
8 changes: 8 additions & 0 deletions src/lib/monaco-theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@ const presetColors: Record<LookPreset, PresetColors> = {
border: '#2e3e50',
accent: '#2ec8ff',
},
midnight: {
bgElevated: '#000000',
fg: '#d7e4f0',
fgMuted: '#9bb0c3',
fgSubtle: '#678197',
border: '#2e3e50',
accent: '#2ec8ff',
},
indigo: {
bgElevated: '#1c2038',
fg: '#deddff',
Expand Down
1 change: 1 addition & 0 deletions src/lib/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export const theme = {
const terminalBackground: Record<LookPreset, string> = {
classic: '#2d2e32',
graphite: '#1c2630',
midnight: '#000000',
indigo: '#1c2038',
ember: '#211918',
glacier: '#232e3a',
Expand Down
23 changes: 23 additions & 0 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,29 @@ html[data-look='graphite'] {
--task-panel-bg: #1c2630;
}

html[data-look='midnight'] {
--bg: radial-gradient(130% 120% at 15% 0%, #253848 0%, #141c26 60%, #101418 100%);
--bg-elevated: #1c2630;
--bg-input: #19232e;
--bg-hover: #253240;
--bg-selected: #1c3e55;
--bg-selected-subtle: #1c3e5540;
--border: #2e3e50;
--border-subtle: #222e3a;
--border-focus: #2ec8ff;
--fg: #d7e4f0;
--fg-muted: #9bb0c3;
--fg-subtle: #678197;
--accent: #2ec8ff;
--accent-hover: #59d7ff;
--accent-text: #031018;
--link: #73dfff;
--island-bg: #192028;
--island-border: #2e3e50;
--task-container-bg: #161e28;
--task-panel-bg: #000000;
}

html[data-look='indigo'] {
--bg: radial-gradient(130% 120% at 18% 0%, #202044 0%, #171c30 58%, #12151f 100%);
--bg-elevated: #1c2038;
Expand Down
Loading