Skip to content

Commit

Permalink
core
Browse files Browse the repository at this point in the history
  • Loading branch information
PernilleChristiansen committed Feb 1, 2024
1 parent 9d6a432 commit cacaf99
Showing 1 changed file with 72 additions and 52 deletions.
124 changes: 72 additions & 52 deletions tokens.json
Original file line number Diff line number Diff line change
@@ -1,68 +1,84 @@
{
"core": {
"size": {
"100": {
"value": "0.875rem",
"type": "sizing"
"core": {
"size": {
"100": {
"value": "0.875rem",
"type": "sizing"
},
"150": {
"value": "1.5rem",
"type": "sizing"
},
"250": {
"value": "2.5rem",
"type": "sizing"
},
"300": {
"value": "3rem",
"type": "sizing"
}
},
"150": {
"value": "1.5rem",
"type": "sizing"
"spacing": {
"150": {
"value": "{core.size.150}",
"type": "spacing"
}
},
"250": {
"value": "2.5rem",
"type": "sizing"
"color": {
"primary": {
"500": {
"value": "#00847C",
"type": "color"
}
}
},
"300": {
"value": "3rem",
"type": "sizing"
}
},
"spacing": {
"150": {
"value": "{size.150}",
"type": "spacing"
}
},
"color": {
"primary": {
"500": {
"value": "#00847C",
"type": "color"
"borderRadius": {
"250": {
"value": "{core.size.250}",
"type": "borderRadius"
}
},
"fontSize": {
"100": {
"value": "{core.size.100}",
"type": "fontSizes"
}
},
"fontFamily": {
"body": {
"value": "'Open Sans', sans-serif",
"type": "fontFamilies"
}
},
"typography": {
"body": {
"value": {
"fontFamily": "Open Sans"
},
"type": "typography"
}
},
"fontWeight": {
"400": {
"value": "600",
"type": "fontWeights"
}
}
},
"borderRadius": {
"250": {
"value": "{size.250}",
"type": "borderRadius"
}
},
"fontSize": {
"100": {
"value": "{size.100}",
"type": "fontSizes"
}
},
"fontFamily": {
"body": {
"value": "'Open Sans', sans-serif",
"type": "fontFamilies"
}
}
},
"semantic": {
"action": {
"size": {
"height": {
"value": "{size.300}",
"value": "{core.size.300}",
"type": "sizing"
}
},
"spacing": {
"inline": {
"padding": {
"value": "{spacing.150}",
"value": "{core.spacing.150}",
"type": "spacing"
}
}
Expand All @@ -71,27 +87,31 @@
"background": {
"primary": {
"enabled": {
"value": "{color.primary.500}",
"value": "{core.color.primary.500}",
"type": "color"
}
}
}
},
"borderRadius": {
"value": "{borderRadius.250}",
"value": "{core.borderRadius.250}",
"type": "borderRadius"
},
"typography": {
"value": {
"fontSize": "{fontSize.100}",
"fontFamily": "{fontFamily.body}"
"fontSize": "{core.fontSize.100}",
"fontFamily": "{core.fontFamily.body}",
"fontWeight": "{core.fontWeight.400}"
},
"type": "typography"
}
}
},
"$themes": [],
"$metadata": {
"tokenSetOrder": ["core", "semantic"]
"tokenSetOrder": [
"core",
"semantic"
]
}
}
}

0 comments on commit cacaf99

Please sign in to comment.