We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1a8997 commit a6cc10eCopy full SHA for a6cc10e
site/src/components/DeploySettingsLayout/Option.tsx
@@ -71,13 +71,17 @@ export const OptionConfig = ({
71
fontFamily: MONOSPACE_FONT_FAMILY,
72
fontWeight: 600,
73
backgroundColor: (theme) =>
74
- source ? "green" : theme.palette.background.paperLight,
+ source
75
+ ? theme.palette.success.dark
76
+ : theme.palette.background.paperLight,
77
display: "inline-flex",
78
alignItems: "center",
79
borderRadius: 0.25,
80
padding: (theme) => theme.spacing(0, 1),
81
border: (theme) =>
- `1px solid ${source ? "lightgreen" : theme.palette.divider}`,
82
+ `1px solid ${
83
+ source ? theme.palette.success.light : theme.palette.divider
84
+ }`,
85
...boxProps.sx,
86
}}
87
/>
0 commit comments