agileflow 4.0.0-alpha.15 → 4.0.0-alpha.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -223,11 +223,15 @@ function applyTabFormat(sessionName, runner, opts = {}) {
|
|
|
223
223
|
const ACCENT = theme.activeBg;
|
|
224
224
|
const FG = theme.activeNameFg;
|
|
225
225
|
|
|
226
|
-
|
|
226
|
+
// Active tab uses the BRAND ACCENT (orange) as its pill background
|
|
227
|
+
// with the strip's dark color as text — maximum contrast against
|
|
228
|
+
// the muted inactive tabs so the user always knows which tab is
|
|
229
|
+
// focused after Alt+1..9 / Alt+Tab.
|
|
230
|
+
const inactiveFormat = ` #I:#W `;
|
|
227
231
|
const activeFormat =
|
|
228
|
-
`#[fg=${
|
|
229
|
-
`#[bg=${
|
|
230
|
-
`#[fg=${
|
|
232
|
+
`#[fg=${ACCENT},bg=${BG}]${HALF_ROUND_OPEN}` +
|
|
233
|
+
`#[bg=${ACCENT},fg=${theme.activeFg},bold] #I:#W ` +
|
|
234
|
+
`#[fg=${ACCENT},bg=${BG}]${HALF_ROUND_CLOSE}`;
|
|
231
235
|
const statusLeft =
|
|
232
236
|
`#[fg=${PILL_BG},bg=${BG}]${HALF_ROUND_OPEN}` +
|
|
233
237
|
`#[bg=${PILL_BG},fg=${ACCENT}] #S ` +
|