Skip to content

Commit

Permalink
fix(code): contrasted versions colors for "primary", "info", "text"
Browse files Browse the repository at this point in the history
  • Loading branch information
manoncarbonnel authored and dpellier committed Sep 25, 2023
1 parent 76ecf23 commit 894ddd7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions packages/themes/blue-jeans/src/colors/palettes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ $blue-jeans-palettes : (
'000': hsl(0, 0%, 100%),
'100': hsl(234, 13%, 85%),
'500': hsl(233, 31%, 44%),
'900': hsl(233, 31%, 22%),
),

'red': (
Expand Down Expand Up @@ -131,13 +132,14 @@ $contrasted-palettes: (
'600-contrasted': map-get(map-get($blue-jeans-palettes, 'blue'), '000'),
'700-contrasted': map-get(map-get($blue-jeans-palettes, 'blue'), '000'),
'800-contrasted': map-get(map-get($blue-jeans-palettes, 'blue'), '000'),
'900-contrasted': map-get(map-get($blue-jeans-palettes, 'blue'), '800'),
'900-contrasted': map-get(map-get($blue-jeans-palettes, 'blue'), '000'),
),

'gray-blue': (
'000-contrasted': map-get(map-get($blue-jeans-palettes, 'gray-blue'), '000'),
'100-contrasted': map-get(map-get($blue-jeans-palettes, 'gray-blue'), '000'),
'000-contrasted': map-get(map-get($blue-jeans-palettes, 'gray-blue'), '500'),
'100-contrasted': map-get(map-get($blue-jeans-palettes, 'gray-blue'), '500'),
'500-contrasted': map-get(map-get($blue-jeans-palettes, 'gray-blue'), '000'),
'900-contrasted': map-get(map-get($blue-jeans-palettes, 'gray-blue'), '000'),
),

'red': (
Expand Down

0 comments on commit 894ddd7

Please sign in to comment.