Skip to content

Commit c6e1836

Browse files
committed
chore: remove darkest as SB option (#2679)
1 parent b145f81 commit c6e1836

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.storybook/decorators/contextsWrapper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const withContextWrapper = makeDecorator({
2727
/** @type string */
2828
const scale = args.scale ? args.scale : getDefaultValue(argTypes.scale) ?? "medium";
2929

30-
const colors = ["light", "dark", "darkest"];
30+
const colors = ["light", "dark"];
3131
const scales = ["medium", "large"];
3232

3333
useEffect(() => {

.storybook/preview.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,17 +81,16 @@ export const argTypes = {
8181
description: "Controls the color context of the component.",
8282
type: { required: true },
8383
table: {
84-
type: { summary: "light | dark | darkest" },
84+
type: { summary: "light | dark" },
8585
defaultValue: { summary: "light" },
8686
category: "Global",
8787
},
88-
options: ["light", "dark", "darkest"],
88+
options: ["light", "dark"],
8989
control: {
9090
type: "select",
9191
labels: {
9292
light: "Light (default)",
9393
dark: "Dark",
94-
darkest: "Darkest",
9594
},
9695
},
9796
},

0 commit comments

Comments
 (0)