File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
site/src/components/DeploySettingsLayout Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type { PropsWithChildren, FC } from "react";
2
2
import Tooltip from "@mui/material/Tooltip" ;
3
3
import { type Interpolation , type Theme } from "@emotion/react" ;
4
4
import { Stack } from "components/Stack/Stack" ;
5
+ import { colors } from "theme/colors" ;
5
6
6
7
const styles = {
7
8
badge : ( theme ) => ( {
@@ -109,10 +110,11 @@ export const AlphaBadge: FC = () => {
109
110
< span
110
111
css = { [
111
112
styles . badge ,
112
- ( theme ) => ( {
113
- border : `1px solid ${ theme . palette . error . light } ` ,
114
- backgroundColor : theme . palette . error . dark ,
115
- } ) ,
113
+ {
114
+ border : `1px solid ${ colors . violet [ 10 ] } ` ,
115
+ backgroundColor : colors . violet [ 14 ] ,
116
+ color : colors . violet [ 1 ] ,
117
+ } ,
116
118
] }
117
119
>
118
120
Alpha
You can’t perform that action at this time.
0 commit comments