Skip to content

Commit 8ef0b45

Browse files
committed
fix a few more colors
1 parent a8b5fec commit 8ef0b45

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

site/src/components/Logs/LogLine.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ const styles = {
5252
},
5353

5454
"&.debug": {
55-
backgroundColor: theme.roles.info.background,
56-
color: theme.roles.info.text,
55+
backgroundColor: theme.roles.notice.background,
56+
color: theme.roles.notice.text,
5757

5858
"& .dashed-line": {
59-
backgroundColor: theme.roles.info.outline,
59+
backgroundColor: theme.roles.notice.outline,
6060
},
6161
},
6262

site/src/pages/TemplatePage/TemplateInsightsPage/TemplateInsightsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ const TemplateUsagePanel: FC<TemplateUsagePanelProps> = ({
423423
const totalInSeconds =
424424
validUsage?.reduce((total, usage) => total + usage.seconds, 0) ?? 1;
425425
const usageColors = chroma
426-
.scale([theme.roles.success.fill.solid, theme.roles.notice.fill.solid])
426+
.scale([theme.roles.success.fill.solid, theme.roles.warning.fill.solid])
427427
.mode("lch")
428428
.colors(validUsage?.length ?? 0);
429429
// The API returns a row for each app, even if the user didn't use it.

site/src/pages/WorkspacesPage/WorkspacesTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export const WorkspacesTable: FC<WorkspacesTableProps> = ({
202202
{workspace.latest_build.status === "running" &&
203203
!workspace.health.healthy && (
204204
<InfoTooltip
205-
type="notice"
205+
type="warning"
206206
title="Workspace is unhealthy"
207207
message="Your workspace is running but some agents are unhealthy."
208208
/>

site/src/utils/workspace.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const getDisplayWorkspaceBuildStatus = (
4848
} as const;
4949
case "running":
5050
return {
51-
type: "info",
51+
type: "active",
5252
color: theme.roles.active.text,
5353
status: DisplayWorkspaceBuildStatusLanguage.running,
5454
} as const;

0 commit comments

Comments
 (0)