Skip to content

Commit

Permalink
fix(tokens): radio bordercolor
Browse files Browse the repository at this point in the history
  • Loading branch information
larserbach committed Nov 27, 2023
1 parent e5044f8 commit 2b63ad4
Showing 1 changed file with 31 additions and 26 deletions.
57 changes: 31 additions & 26 deletions packages/figma-design-tokens/input/tokens/color/CMP.json
Original file line number Diff line number Diff line change
Expand Up @@ -398,71 +398,76 @@
"BorderColor": {
"Inactive": {
"Rest": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.rest}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.Rest"
"description": "Forms.Radio.Control.Background.Unselected.Fill.Rest"
},
"Hover": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.hover}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.Hover"
"description": "Forms.Radio.Control.Background.Unselected.Fill.Hover"
},
"Pressed": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.pressed}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.Pressed"
"description": "Forms.Radio.Control.Background.Unselected.Fill.Pressed"
},
"Focus": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.rest}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.Focus"
"description": "Forms.Radio.Control.Background.Unselected.Fill.Focus"
},
"Disabled": {
"value": "{q.stroke.none}",
"value": "{q.surface.disabled.alpha}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.Disabled"
"description": "Forms.Radio.Control.Background.Unselected.Fill.Disabled"
},
"ReadOnly": {
"value": "{q.stroke.none}",
"value": "{q.surface.disabled.alpha}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.ReadOnly"
"description": "Forms.Radio.Control.Background.Unselected.Fill.ReadOnly"
},
"Error": {
"value": "{q.stroke.none}",
"value": "{q.stroke.error}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Stroke.Error"
"description": "Forms.Radio.Control.Background.Unselected.Fill.Error"
}
},
"Active": {
"Rest": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.rest}",
"type": "color",
"description": "Forms.Radio.Control.Background.Selected.Stroke.Rest"
"description": "Forms.Radio.Control.Background.Selected.Fill.Rest"
},
"Hover": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.hover}",
"type": "color",
"description": "Forms.Radio.Control.Background.Selected.Stroke.Hover"
"description": "Forms.Radio.Control.Background.Selected.Fill.Hover"
},
"Pressed": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.pressed}",
"type": "color",
"description": "Forms.Radio.Control.Background.Selected.Stroke.Pressed"
"description": "Forms.Radio.Control.Background.Selected.Fill.Pressed"
},
"Focus": {
"value": "{q.stroke.none}",
"value": "{q.surface.brand.primary.rest}",
"type": "color",
"description": "Forms.Radio.Control.Background.Selected.Stroke.Focus"
"description": "Forms.Radio.Control.Background.Selected.Fill.Focus"
},
"Disabled": {
"value": "{q.stroke.none}",
"value": "{q.surface.disabled.alpha}",
"type": "color",
"description": "Forms.Radio.Control.Background.Selected.Stroke.Disabled"
"description": "Forms.Radio.Control.Background.Selected.Fill.Disabled"
},
"ReadOnly": {
"value": "{q.stroke.none}",
"value": "{q.surface.disabled.alpha}",
"type": "color",
"description": "Forms.Radio.Control.Background.Selected.Stroke.ReadOnly"
"description": "Forms.Radio.Control.Background.Selected.Fill.ReadOnly"
},
"Error": {
"value": "{q.stroke.error}",
"type": "color",
"description": "Forms.Radio.Control.Background.Unselected.Fill.Error"
}
}
}
Expand Down

0 comments on commit 2b63ad4

Please sign in to comment.