Skip to content

Commit

Permalink
fix(design-tokens): fix checkbox tertiary bg color
Browse files Browse the repository at this point in the history
  • Loading branch information
clementprevot committed Jul 17, 2023
1 parent 4c2b3a2 commit f9a3cd3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
9 changes: 1 addition & 8 deletions packages/design-tokens/tokens/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = {
comment:
'Background color to use for secondary variant of checkbox/radio fields.',

value: '{color.base.none.value}',
value: '{color.base.transparent.value}',
},

// eslint-disable-next-line sort-keys, sort-keys/sort-keys-fix, perfectionist/sort-objects
Expand Down Expand Up @@ -160,13 +160,6 @@ module.exports = {

value: '{shadow.none.value}',
},

// eslint-disable-next-line sort-keys, sort-keys/sort-keys-fix, perfectionist/sort-objects
disabled: {
comment: 'Shadow for disabled checkbox/radio fields.',

value: 'inherit',
},
},
},
},
Expand Down
1 change: 0 additions & 1 deletion packages/design-tokens/tokens/color/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ module.exports = {
white: { comment: 'White Tone 100', value: '#FFFFFF' },

// eslint-disable-next-line sort-keys, sort-keys/sort-keys-fix, perfectionist/sort-objects
none: { comment: 'No background color', value: 'none' },
transparent: { comment: 'Transparent', value: 'transparent' },
},
},
Expand Down

0 comments on commit f9a3cd3

Please sign in to comment.