Skip to content

Commit

Permalink
fix(TabSlider): fix default color
Browse files Browse the repository at this point in the history
  • Loading branch information
driss-chelouati committed Feb 19, 2024
1 parent e09a081 commit ef540cd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/components/tab-slider/tab-slider.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const defaultConfig = {
naver: {
background: {
light: 'white',
dark: 'muted-700',
dark: 'muted-800',
},
border: {
light: 'muted-300',
Expand Down
9 changes: 8 additions & 1 deletion src/plugins/components/tab-slider/tab-slider.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,14 @@ const meta = {
argTypes: {
color: {
control: { type: 'select' },
options: ['primary', 'light', 'dark', 'black'],
options: [
'default',
'default-contrast',
'primary',
'light',
'dark',
'black',
],
defaultValue: 'primary',
},
rounded: {
Expand Down

0 comments on commit ef540cd

Please sign in to comment.