Skip to content

Commit

Permalink
fix(design-tokens): fix radio token
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Jul 18, 2023
1 parent 0149b58 commit 31a726e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/design-tokens/tokens/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,31 +79,31 @@ module.exports = {
},

// eslint-disable-next-line sort-keys, sort-keys/sort-keys-fix, perfectionist/sort-objects
check: {
checked: {
1: {
comment:
'Background color to use when the first (and 5n+1th) radio button in a group is selected',
value: '{color.decorative.pink.90.value}',
value: '{color.decorative.pink.70.value}',
},
2: {
comment:
'Background color to use when the second (and 5n+2th) radio button in a group is selected',
value: '{color.decorative.yellow.90.value}',
value: '{color.decorative.yellow.70.value}',
},
3: {
comment:
'Background color to use when the third (and 5n+3th) radio button in a group is selected',
value: '{color.decorative.green.90.value}',
value: '{color.decorative.green.70.value}',
},
4: {
comment:
'Background color to use when the fourth (and 5n+4th) radio button in a group is selected',
value: '{color.decorative.blue.90.value}',
value: '{color.decorative.blue.70.value}',
},
5: {
comment:
'Background color to use when the fifth (and 5n+5th) radio button in a group is selected',
value: '{color.decorative.purple.90.value}',
value: '{color.decorative.purple.70.value}',
},
},
},
Expand Down

0 comments on commit 31a726e

Please sign in to comment.