Skip to content

Commit

Permalink
chore: update slider semantics file
Browse files Browse the repository at this point in the history
  • Loading branch information
kalashshah committed Sep 10, 2024
1 parent 49ac294 commit 6fc49b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/blocks/theme/semantics/semantics.slider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { strokeSemantics } from './semantics.stroke';
import { surfaceSemantics } from './semantics.surface';

export const sliderSemantics = {
'stroke-default': strokeSemantics.secondary,
'stroke-default': { light: strokeSemantics.secondary.light, dark: strokeSemantics.secondary.dark },
'icon-default': { light: colorPrimitives['white-100'], dark: colorPrimitives['white-100'] },
'background-default': surfaceSemantics.secondary,
'background-progress': surfaceSemantics['brand-medium'],
'background-default': { light: surfaceSemantics.secondary.light, dark: surfaceSemantics.secondary.dark },
'background-progress': { light: surfaceSemantics['brand-medium'].light, dark: surfaceSemantics['brand-medium'].dark },
};

0 comments on commit 6fc49b6

Please sign in to comment.