Skip to content

Commit

Permalink
Adding service card tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
gjones committed Dec 19, 2024
1 parent c0bc261 commit 567eb7d
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 2 deletions.
16 changes: 15 additions & 1 deletion src/styles/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3015,12 +3015,25 @@
"slate": string
}
}
},
"serviceCard": {
"color": {
"background": {
"default": string,
"hover": string
},
"stroke": {
"default": string,
"hover": string
}
}
}
},
"transition": {
"default": string,
"duration": {
"slow": string,
"smooth": string,
"medium": string,
"fast": string
},
Expand Down Expand Up @@ -3471,7 +3484,8 @@
"1": string,
"2": string,
"3": string,
"4": string
"4": string,
"5": string
},
"breakpoint": {
"sizes": {
Expand Down
12 changes: 12 additions & 0 deletions src/styles/variables.classic.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,18 @@
"slate": "#9a9ea7"
}
}
},
"serviceCard": {
"color": {
"background": {
"default": "#FBFCFF",
"hover": "lch(99 1.55 272)"
},
"stroke": {
"default": "#e6e7e9",
"hover": "rgb(81% 82.1% 83.6%)"
}
}
}
},
"name": "classic",
Expand Down
12 changes: 12 additions & 0 deletions src/styles/variables.dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -1617,6 +1617,18 @@
"slate": "#9a9ea7"
}
}
},
"serviceCard": {
"color": {
"background": {
"default": "rgb(17.8% 17.8% 17.8%)",
"hover": "lch(19.1 0 0)"
},
"stroke": {
"default": "rgb(23.6% 23.6% 23.6%)",
"hover": "rgb(27.4% 27.4% 27.4%)"
}
}
}
},
"name": "dark",
Expand Down
16 changes: 15 additions & 1 deletion src/styles/variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -3014,12 +3014,25 @@
"slate": "#9a9ea7"
}
}
},
"serviceCard": {
"color": {
"background": {
"default": "#FBFCFF",
"hover": "lch(99 1.55 272)"
},
"stroke": {
"default": "#e6e7e9",
"hover": "rgb(81% 82.1% 83.6%)"
}
}
}
},
"transition": {
"default": "all 100ms ease-in 0ms",
"duration": {
"slow": "300ms",
"smooth": "150ms",
"medium": "100ms",
"fast": "50ms"
},
Expand Down Expand Up @@ -3470,7 +3483,8 @@
"1": "0 4px 6px -1px lch(6.77 0 0 / 0.15), 0 2px 4px -1px lch(6.77 0 0 / 0.15)",
"2": "0 4px 4px 0 rgba(88, 92, 98, 0.06), inset 5px 0 10px 0 rgba(104, 105, 111, 0.1)",
"3": "-5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08)",
"4": "5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08)"
"4": "5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08)",
"5": "0 2px 2px 0 rgba(0, 0, 0, 0.03)"
},
"breakpoint": {
"sizes": {
Expand Down
12 changes: 12 additions & 0 deletions src/styles/variables.light.json
Original file line number Diff line number Diff line change
Expand Up @@ -1604,6 +1604,18 @@
"slate": "#9a9ea7"
}
}
},
"serviceCard": {
"color": {
"background": {
"default": "#FBFCFF",
"hover": "lch(99 1.55 272)"
},
"stroke": {
"default": "#e6e7e9",
"hover": "rgb(81% 82.1% 83.6%)"
}
}
}
},
"name": "light",
Expand Down

0 comments on commit 567eb7d

Please sign in to comment.