Skip to content

Commit af142e3

Browse files
committed
chore: update experiment name
1 parent de5e171 commit af142e3

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

site/src/pages/ManagementSettingsPage/CustomRolesPage/PermissionPillsList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ const OverflowPermissionPill: FC<OverflowPermissionPillProps> = ({
129129

130130
const styles = {
131131
permissionPill: (theme) => ({
132-
backgroundColor: theme.experimental.pill.background,
133-
borderColor: theme.experimental.pill.outline,
134-
color: theme.experimental.pill.text,
132+
backgroundColor: theme.experimental.pillDefault.background,
133+
borderColor: theme.experimental.pillDefault.outline,
134+
color: theme.experimental.pillDefault.text,
135135
width: "fit-content",
136136
}),
137137
} satisfies Record<string, Interpolation<Theme>>;

site/src/theme/dark/experimental.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
},
4545
},
4646

47-
pill: {
47+
pillDefault: {
4848
background: colors.zinc[800],
4949
outline: colors.zinc[700],
5050
text: colors.zinc[200],

site/src/theme/darkBlue/experimental.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
},
4545
},
4646

47-
pill: {
47+
pillDefault: {
4848
background: colors.gray[800],
4949
outline: colors.gray[700],
5050
text: colors.gray[200],

site/src/theme/experimental.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { InteractiveRole, Role } from "./roles";
33
export interface NewTheme {
44
l1: Role; // page background, things which sit at the "root level"
55
l2: InteractiveRole; // sidebars, table headers, navigation
6-
pill: {
6+
pillDefault: {
77
background: string;
88
outline: string;
99
text: string;

site/src/theme/light/experimental.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
},
4545
},
4646

47-
pill: {
47+
pillDefault: {
4848
background: colors.zinc[200],
4949
outline: colors.zinc[300],
5050
text: colors.zinc[700],

0 commit comments

Comments
 (0)