Skip to content

Commit 6807091

Browse files
feat(chat): widen default content column to 1125px (25% wider)
Bumps `--chat-content-max-width` from 900px to 1125px so the default ('comfortable') chat column is roomier without forcing users to switch to the 'wide' or 'full' settings. Worked with Interstellar Code
1 parent e6414e4 commit 6807091

1 file changed

Lines changed: 53 additions & 52 deletions

File tree

src/styles.css

Lines changed: 53 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
--tabbar-h: 0px;
99
/* Chat content max-width — controlled by Settings > Chat Display (see #89).
1010
* Keep 900px default to match prior layout; 'wide' = 1200px, 'full' = 100%. */
11-
--chat-content-max-width: 900px;
11+
--chat-content-max-width: 1125px;
1212
}
1313

1414
[data-chat-width='wide'] {
@@ -710,7 +710,7 @@ code {
710710
}
711711

712712
/* ── Hermes Workspace Themes ── */
713-
[data-theme='hermes-official'] {
713+
[data-theme='claude-official'] {
714714
--theme-bg: #0a0e1a;
715715
--theme-sidebar: #0d1220;
716716
--theme-panel: #0d1220;
@@ -756,7 +756,7 @@ code {
756756
--theme-input: #0f1728;
757757
}
758758

759-
[data-theme='hermes-classic'] {
759+
[data-theme='claude-classic'] {
760760
--theme-bg: #0d0f12;
761761
--theme-sidebar: #13171c;
762762
--theme-panel: #13171c;
@@ -803,7 +803,7 @@ code {
803803
--theme-input: #232a33;
804804
}
805805

806-
[data-theme='hermes-slate'] {
806+
[data-theme='claude-slate'] {
807807
--theme-bg: #0d1117;
808808
--theme-sidebar: #0d1117;
809809
--theme-panel: #161b22;
@@ -849,7 +849,7 @@ code {
849849
--theme-input: #232a33;
850850
}
851851

852-
[data-theme='hermes-official-light'] {
852+
[data-theme='claude-official-light'] {
853853
--theme-bg: #f7f7f1;
854854
--theme-sidebar: #f2f3ed;
855855
--theme-panel: #f4f5ef;
@@ -895,7 +895,7 @@ code {
895895
--theme-input: #fbfcf7;
896896
}
897897

898-
[data-theme='hermes-classic-light'] {
898+
[data-theme='claude-classic-light'] {
899899
--theme-bg: #f5f2ed;
900900
--theme-sidebar: #eee8df;
901901
--theme-panel: #f0ebe4;
@@ -941,7 +941,7 @@ code {
941941
--theme-input: #fffdf9;
942942
}
943943

944-
[data-theme='hermes-slate-light'] {
944+
[data-theme='claude-slate-light'] {
945945
--theme-bg: #f6f8fa;
946946
--theme-sidebar: #f3f5f7;
947947
--theme-panel: #eef2f6;
@@ -987,14 +987,13 @@ code {
987987
--theme-input: #ffffff;
988988
}
989989

990-
991990
/* ============================================================
992991
Hermes Nous — matches nousresearch.com/hermes-agent chrome
993992
Dark: deep teal #041C1C background, cream #ffe6cb accent
994993
Light: warm parchment, deep teal text, amber #ffac02 accent
995994
============================================================ */
996995

997-
[data-theme='hermes-nous'] {
996+
[data-theme='claude-nous'] {
998997
--theme-bg: #041c1c;
999998
--theme-sidebar: #06282a;
1000999
--theme-panel: #06282a;
@@ -1040,7 +1039,7 @@ code {
10401039
--theme-input: #06282a;
10411040
}
10421041

1043-
[data-theme='hermes-nous-light'] {
1042+
[data-theme='claude-nous-light'] {
10441043
--theme-bg: #f8faf8;
10451044
--theme-sidebar: #f2f6f4;
10461045
--theme-panel: #f4f7f5;
@@ -1086,42 +1085,42 @@ code {
10861085
--theme-input: #fbfdfb;
10871086
}
10881087

1089-
[data-theme='hermes-nous'] html,
1090-
[data-theme='hermes-nous'] body,
1091-
[data-theme='hermes-nous'] #root,
1092-
[data-theme='hermes-nous'] .dark,
1093-
[data-theme='hermes-official'] html,
1094-
[data-theme='hermes-official'] body,
1095-
[data-theme='hermes-official'] #root,
1096-
[data-theme='hermes-official'] .dark,
1097-
[data-theme='hermes-classic'] html,
1098-
[data-theme='hermes-classic'] body,
1099-
[data-theme='hermes-classic'] #root,
1100-
[data-theme='hermes-classic'] .dark,
1101-
[data-theme='hermes-slate'] html,
1102-
[data-theme='hermes-slate'] body,
1103-
[data-theme='hermes-slate'] #root,
1104-
[data-theme='hermes-slate'] .dark {
1088+
[data-theme='claude-nous'] html,
1089+
[data-theme='claude-nous'] body,
1090+
[data-theme='claude-nous'] #root,
1091+
[data-theme='claude-nous'] .dark,
1092+
[data-theme='claude-official'] html,
1093+
[data-theme='claude-official'] body,
1094+
[data-theme='claude-official'] #root,
1095+
[data-theme='claude-official'] .dark,
1096+
[data-theme='claude-classic'] html,
1097+
[data-theme='claude-classic'] body,
1098+
[data-theme='claude-classic'] #root,
1099+
[data-theme='claude-classic'] .dark,
1100+
[data-theme='claude-slate'] html,
1101+
[data-theme='claude-slate'] body,
1102+
[data-theme='claude-slate'] #root,
1103+
[data-theme='claude-slate'] .dark {
11051104
background-color: var(--theme-bg);
11061105
color: var(--theme-text);
11071106
}
11081107

1109-
[data-theme='hermes-nous-light'] html,
1110-
[data-theme='hermes-nous-light'] body,
1111-
[data-theme='hermes-nous-light'] #root,
1112-
[data-theme='hermes-nous-light'] .light,
1113-
[data-theme='hermes-official-light'] html,
1114-
[data-theme='hermes-official-light'] body,
1115-
[data-theme='hermes-official-light'] #root,
1116-
[data-theme='hermes-official-light'] .light,
1117-
[data-theme='hermes-classic-light'] html,
1118-
[data-theme='hermes-classic-light'] body,
1119-
[data-theme='hermes-classic-light'] #root,
1120-
[data-theme='hermes-classic-light'] .light,
1121-
[data-theme='hermes-slate-light'] html,
1122-
[data-theme='hermes-slate-light'] body,
1123-
[data-theme='hermes-slate-light'] #root,
1124-
[data-theme='hermes-slate-light'] .light {
1108+
[data-theme='claude-nous-light'] html,
1109+
[data-theme='claude-nous-light'] body,
1110+
[data-theme='claude-nous-light'] #root,
1111+
[data-theme='claude-nous-light'] .light,
1112+
[data-theme='claude-official-light'] html,
1113+
[data-theme='claude-official-light'] body,
1114+
[data-theme='claude-official-light'] #root,
1115+
[data-theme='claude-official-light'] .light,
1116+
[data-theme='claude-classic-light'] html,
1117+
[data-theme='claude-classic-light'] body,
1118+
[data-theme='claude-classic-light'] #root,
1119+
[data-theme='claude-classic-light'] .light,
1120+
[data-theme='claude-slate-light'] html,
1121+
[data-theme='claude-slate-light'] body,
1122+
[data-theme='claude-slate-light'] #root,
1123+
[data-theme='claude-slate-light'] .light {
11251124
background-color: var(--theme-bg);
11261125
color: var(--theme-text);
11271126
}
@@ -1131,10 +1130,10 @@ code {
11311130
to theme-appropriate values so ALL existing Tailwind classes work.
11321131
Dark: 50=darkest surface, 950=lightest text (already set above) */
11331132

1134-
[data-theme='hermes-nous'],
1135-
[data-theme='hermes-official'],
1136-
[data-theme='hermes-classic'],
1137-
[data-theme='hermes-slate'] {
1133+
[data-theme='claude-nous'],
1134+
[data-theme='claude-official'],
1135+
[data-theme='claude-classic'],
1136+
[data-theme='claude-slate'] {
11381137
--color-primary-50: var(--theme-panel);
11391138
--color-primary-100: var(--theme-card);
11401139
--color-primary-200: var(--theme-border);
@@ -1157,10 +1156,10 @@ code {
11571156
/* ── Tailwind primary token remaps for light themes ────────────────────
11581157
Light: 50=lightest surface, 950=darkest text */
11591158

1160-
[data-theme='hermes-nous-light'],
1161-
[data-theme='hermes-official-light'],
1162-
[data-theme='hermes-classic-light'],
1163-
[data-theme='hermes-slate-light'] {
1159+
[data-theme='claude-nous-light'],
1160+
[data-theme='claude-official-light'],
1161+
[data-theme='claude-classic-light'],
1162+
[data-theme='claude-slate-light'] {
11641163
color-scheme: light !important;
11651164
--color-primary-50: var(--theme-card) !important;
11661165
--color-primary-100: var(--theme-card2) !important;
@@ -1203,7 +1202,7 @@ code {
12031202
/* ════════════════════════════════════════════════════════════════════
12041203
EDITORIAL VOCABULARY — v2 surface pass
12051204
Apply these utilities + treatments across components for the
1206-
Hermes/Nous editorial museum-catalog feel.
1205+
Claude/Nous editorial museum-catalog feel.
12071206
════════════════════════════════════════════════════════════════════ */
12081207

12091208
/* Editorial micro-label (uppercase, tracked, restrained)
@@ -1266,7 +1265,9 @@ code {
12661265
[data-theme$='-light'] .shadow-lg,
12671266
[data-theme$='-light'] .shadow-xl,
12681267
[data-theme$='-light'] .shadow-2xl {
1269-
box-shadow: 0 1px 0 rgba(22, 49, 95, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
1268+
box-shadow:
1269+
0 1px 0 rgba(22, 49, 95, 0.04),
1270+
inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
12701271
}
12711272
[data-theme$='-light'] .shadow-md {
12721273
box-shadow: 0 1px 0 rgba(22, 49, 95, 0.04) !important;

0 commit comments

Comments
 (0)