Skip to content

Commit dfe5b6b

Browse files
sanjaydocclaude
andcommitted
Status chips: bright outline pills app-wide (Option 1)
Brighten --ok (#12a150) and --no (#e0332d) and convert .chip.allow / .chip.deny from filled tints to outline pills — a bright colored border + text on a transparent ground, matching the outline action buttons. Because every view uses these shared classes, the treatment updates consistently across the whole app (explorer, directory, review, compliance, SaaS, cost, network, backup/DR, readiness, action-center badges). Neutral chips stay grey. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H9BehfGmiCrz3J15W18rc9
1 parent fb9255a commit dfe5b6b

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

docs/assets/theme.css

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
--rule: #111114; /* the signature strong dark full-width rule */
1515

1616
--accent: #0d0d0f; /* actions are black, like Merge */
17-
--ok: #157050; /* muted green (ALLOW) */
17+
--ok: #12a150; /* bright green (ALLOW) */
1818
--ok-bg: #e8f2ec;
19-
--no: #a5342f; /* muted red (DENY) */
19+
--no: #e0332d; /* bright red (DENY) */
2020
--no-bg: #f6ebe9;
2121

2222
/* small layer-accent dots for wayfinding (kept subtle) */
@@ -128,8 +128,10 @@ p { margin: 0 0 1rem; color: var(--ink-2); }
128128
padding: .18rem .55rem; border-radius: var(--pill);
129129
border: 1px solid var(--hair); color: var(--ink-2); background: var(--paper-2);
130130
}
131-
.chip.allow { color: var(--ok); background: var(--ok-bg); border-color: #cfe6da; }
132-
.chip.deny { color: var(--no); background: var(--no-bg); border-color: #ecd4d1; }
131+
/* Status chips: outline pills in the same language as the action buttons —
132+
bright colored border + text on a transparent ground (no filled blob). */
133+
.chip.allow { color: var(--ok); background: transparent; border: 1.5px solid var(--ok); }
134+
.chip.deny { color: var(--no); background: transparent; border: 1.5px solid var(--no); }
133135
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
134136
.dot.okta { background: var(--okta); }
135137
.dot.ad { background: var(--ad); }

0 commit comments

Comments
 (0)