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 03c377b commit 1cd4405Copy full SHA for 1cd4405
site/src/components/DeploySettingsLayout/Badges.tsx
@@ -2,6 +2,7 @@ import type { PropsWithChildren, FC } from "react";
2
import Tooltip from "@mui/material/Tooltip";
3
import { type Interpolation, type Theme } from "@emotion/react";
4
import { Stack } from "components/Stack/Stack";
5
+import { colors } from "theme/colors";
6
7
const styles = {
8
badge: (theme) => ({
@@ -109,10 +110,11 @@ export const AlphaBadge: FC = () => {
109
110
<span
111
css={[
112
styles.badge,
- (theme) => ({
113
- border: `1px solid ${theme.palette.error.light}`,
114
- backgroundColor: theme.palette.error.dark,
115
- }),
+ {
+ border: `1px solid ${colors.violet[10]}`,
+ backgroundColor: colors.violet[14],
116
+ color: colors.violet[1],
117
+ },
118
]}
119
>
120
Alpha
0 commit comments