Skip to content

Commit

Permalink
- Changed medium to Medium etc. Case-sensitive
Browse files Browse the repository at this point in the history
- added another spacing token
  • Loading branch information
bbenligiray committed Mar 2, 2024
1 parent d979a7e commit dc53576
Showing 1 changed file with 89 additions and 7 deletions.
96 changes: 89 additions & 7 deletions tokens/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -391,31 +391,31 @@
},
"weight": {
"300": {
"value": "light",
"value": "Light",
"type": "fontWeights"
},
"400": {
"value": "regular",
"value": "Regular",
"type": "fontWeights"
},
"500": {
"value": "medium",
"value": "Medium",
"type": "fontWeights"
},
"600": {
"value": "semi-bold",
"value": "SemiBold",
"type": "fontWeights"
},
"700": {
"value": "bold",
"value": "Bold",
"type": "fontWeights"
},
"800": {
"value": "extra-bold",
"value": "ExtraBold",
"type": "fontWeights"
},
"900": {
"value": "black",
"value": "Black",
"type": "fontWeights"
}
},
Expand Down Expand Up @@ -563,6 +563,10 @@
"value": "{ds.core.spacing.base} *50",
"type": "spacing"
},
"75": {
"value": "{ds.core.spacing.base}*75",
"type": "spacing"
},
"100": {
"value": "{ds.core.spacing.base} *100",
"type": "spacing"
Expand Down Expand Up @@ -1503,6 +1507,58 @@
"type": "color"
}
}
},
"text": {
"default": {
"value": "{ds.core.color.gray.500}",
"type": "color"
},
"error": {
"value": "{ds.semantic.color.action.error.500}",
"type": "color"
},
"warning": {
"value": "{ds.semantic.color.action.warning.500}",
"type": "color"
},
"success": {
"value": "{ds.semantic.color.action.success.500}",
"type": "color"
}
},
"border": {
"default": {
"value": "{ds.core.color.gray.700}",
"type": "color"
},
"focused": {
"value": "{ds.core.color.base.light}",
"type": "color"
},
"disabled": {
"value": "{ds.core.color.gray.800}",
"type": "color"
},
"error": {
"default": {
"value": "{ds.semantic.color.action.error.700}",
"type": "color"
},
"focused": {
"value": "{ds.semantic.color.action.error.300}",
"type": "color"
}
}
},
"background": {
"default": {
"value": "{ds.core.color.base.dark}",
"type": "color"
},
"focused": {
"value": "{ds.core.color.gray.900}",
"type": "color"
}
}
},
"search": {
Expand Down Expand Up @@ -1551,6 +1607,32 @@
}
}
}
},
"component": {
"button": {
"primary": {
"default": {
"value": {
"fill": "{ds.core.color.blue.50}",
"borderRadius": "{ds.core.border.radius.l}",
"typography": "{ds.semantic.font.button.1}"
},
"type": "composition"
}
}
},
"input": {
"default": {
"value": {
"border": "{ds.semantic.input.border.default}",
"typography": "{ds.semantic.font.body.9}",
"fill": "{ds.semantic.color.background.default}",
"verticalPadding": "{ds.core.spacing.50}",
"horizontalPadding": "{ds.core.spacing.75}"
},
"type": "composition"
}
}
}
}
},
Expand Down

0 comments on commit dc53576

Please sign in to comment.