Skip to content

Commit 3a4fb5e

Browse files
committed
color tweaks
1 parent c5ad3db commit 3a4fb5e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

site/src/pages/WorkspacePage/WorkspaceScheduleControls.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const AutoStopDisplay: FC<AutoStopDisplayProps> = ({ workspace, template }) => {
148148
css={
149149
isShutdownSoon(workspace) &&
150150
((theme) => ({
151-
color: `${theme.palette.warning.light} !important`,
151+
color: `${theme.roles.danger.fill.outline} !important`,
152152
}))
153153
}
154154
>

site/src/theme/dark/roles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export default {
77
outline: colors.orange[500],
88
text: colors.orange[50],
99
fill: {
10-
solid: colors.orange[700],
11-
outline: colors.orange[700],
10+
solid: colors.orange[500],
11+
outline: colors.orange[400],
1212
text: colors.white,
1313
},
1414
disabled: {

site/src/theme/darkBlue/roles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ export default {
77
outline: colors.orange[600],
88
text: colors.orange[50],
99
fill: {
10-
solid: colors.orange[600],
11-
outline: colors.orange[600],
10+
solid: colors.orange[500],
11+
outline: colors.orange[400],
1212
text: colors.white,
1313
},
1414
disabled: {

site/src/theme/roles.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ export interface Role {
5555

5656
/** A set of more saturated colors to make things stand out */
5757
fill: {
58-
/** A saturated color for use as a background, or for text or icons on a neutral background */
58+
/** A saturated color for use as a background, or icons on a neutral background */
5959
solid: string;
6060

61-
/** A color for outlining an area using the solid background color, or for an outlined icon */
61+
/** A color for outlining an area using the solid background color, or for text or for an outlined icon */
6262
outline: string;
6363

6464
/** A color for text when using the `solid` background color */

0 commit comments

Comments
 (0)