Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions tokens/alias/dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@
"disabled": {
"value": "{global.color.neutrals.80}",
"type": "color"
},
"light": {
"value": "{global.color.neutrals.80}",
"type": "color"
}
},
"background": {
Expand All @@ -221,7 +225,7 @@
"description": "Default component background color"
},
"primaryHover": {
"value": "{global.color.neutrals.80}",
"value": "{global.color.neutrals.85}",
"type": "color",
"description": "Calendar range background, table row hover "
},
Expand Down Expand Up @@ -601,7 +605,7 @@
"blur": "32",
"spread": "0",
"color": "rgba(0,0,0,0.18)",
"type": "innerShadow"
"type": "dropShadow"
},
"type": "boxShadow",
"description": "Dark mode elevation for a drawer that appears from the left side of the screen"
Expand All @@ -613,7 +617,7 @@
"blur": "32",
"spread": "0",
"color": "rgba(0,0,0,0.18)",
"type": "innerShadow"
"type": "dropShadow"
},
"type": "boxShadow",
"description": "Dark mode elevation for a drawer that appears from the top side of the screen"
Expand All @@ -625,7 +629,7 @@
"blur": "32",
"spread": "0",
"color": "rgba(0,0,0,0.18)",
"type": "innerShadow"
"type": "dropShadow"
},
"type": "boxShadow",
"description": "Dark mode elevation for a drawer that appears from the bottom side of the screen"
Expand Down
10 changes: 7 additions & 3 deletions tokens/alias/light.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,10 @@
"disabled": {
"value": "{global.color.neutrals.40}",
"type": "color"
},
"light": {
"value": "{global.color.neutrals.30}",
"type": "color"
}
},
"background": {
Expand Down Expand Up @@ -485,7 +489,7 @@
"blur": "32",
"spread": "0",
"color": "rgba(61,61,66,0.18)",
"type": "innerShadow"
"type": "dropShadow"
},
"type": "boxShadow",
"description": "Elevation for a drawer that appears from the left side of the screen"
Expand All @@ -497,7 +501,7 @@
"blur": "32",
"spread": "0",
"color": "rgba(61,61,66,0.18)",
"type": "innerShadow"
"type": "dropShadow"
},
"type": "boxShadow",
"description": "Elevation for a drawer that appears from the top side of the screen"
Expand All @@ -509,7 +513,7 @@
"blur": "32",
"spread": "0",
"color": "rgba(61,61,66,0.18)",
"type": "innerShadow"
"type": "dropShadow"
},
"type": "boxShadow",
"description": "Elevation for a drawer that appears from the bottom side of the screen"
Expand Down
18 changes: 16 additions & 2 deletions tokens/components/dropdown/dropdown.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
"component": {
"dropdown": {
"icon": {
"default": {
"primary": {
"value": "{alias.content.icon.primary.default}",
"type": "color"
},
"secondary": {
"value": "{alias.content.icon.secondary.default}",
"type": "color"
},
"disabled": {
"value": "{alias.content.icon.primary.disabled}",
"type": "color"
Expand Down Expand Up @@ -38,8 +42,18 @@
"value": "{alias.interaction.background.tertiary}",
"type": "color"
},
"selected": {
"value": "{alias.interaction.background.primaryActive}",
"type": "color"
},
"category": {
"value": "{alias.interaction.background.secondary}",
"value": "{alias.interaction.background.neutralHover}",
"type": "color"
}
},
"border": {
"default": {
"value": "{alias.border.normal}",
"type": "color"
}
}
Expand Down
5 changes: 5 additions & 0 deletions tokens/global/global.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
"value": "#515157",
"type": "color"
},
"85": {
"value": "#47474D",
"type": "color",
"description": "Hover color for interactive backgrounds in dark mode"
},
"90": {
"value": "#3D3D42",
"type": "color",
Expand Down