Skip to content

Commit 567eb7d

Browse files
committed
Adding service card tokens
1 parent c0bc261 commit 567eb7d

5 files changed

+66
-2
lines changed

src/styles/types.ts

+15-1
Original file line numberDiff line numberDiff line change
@@ -3015,12 +3015,25 @@
30153015
"slate": string
30163016
}
30173017
}
3018+
},
3019+
"serviceCard": {
3020+
"color": {
3021+
"background": {
3022+
"default": string,
3023+
"hover": string
3024+
},
3025+
"stroke": {
3026+
"default": string,
3027+
"hover": string
3028+
}
3029+
}
30183030
}
30193031
},
30203032
"transition": {
30213033
"default": string,
30223034
"duration": {
30233035
"slow": string,
3036+
"smooth": string,
30243037
"medium": string,
30253038
"fast": string
30263039
},
@@ -3471,7 +3484,8 @@
34713484
"1": string,
34723485
"2": string,
34733486
"3": string,
3474-
"4": string
3487+
"4": string,
3488+
"5": string
34753489
},
34763490
"breakpoint": {
34773491
"sizes": {

src/styles/variables.classic.json

+12
Original file line numberDiff line numberDiff line change
@@ -860,6 +860,18 @@
860860
"slate": "#9a9ea7"
861861
}
862862
}
863+
},
864+
"serviceCard": {
865+
"color": {
866+
"background": {
867+
"default": "#FBFCFF",
868+
"hover": "lch(99 1.55 272)"
869+
},
870+
"stroke": {
871+
"default": "#e6e7e9",
872+
"hover": "rgb(81% 82.1% 83.6%)"
873+
}
874+
}
863875
}
864876
},
865877
"name": "classic",

src/styles/variables.dark.json

+12
Original file line numberDiff line numberDiff line change
@@ -1617,6 +1617,18 @@
16171617
"slate": "#9a9ea7"
16181618
}
16191619
}
1620+
},
1621+
"serviceCard": {
1622+
"color": {
1623+
"background": {
1624+
"default": "rgb(17.8% 17.8% 17.8%)",
1625+
"hover": "lch(19.1 0 0)"
1626+
},
1627+
"stroke": {
1628+
"default": "rgb(23.6% 23.6% 23.6%)",
1629+
"hover": "rgb(27.4% 27.4% 27.4%)"
1630+
}
1631+
}
16201632
}
16211633
},
16221634
"name": "dark",

src/styles/variables.json

+15-1
Original file line numberDiff line numberDiff line change
@@ -3014,12 +3014,25 @@
30143014
"slate": "#9a9ea7"
30153015
}
30163016
}
3017+
},
3018+
"serviceCard": {
3019+
"color": {
3020+
"background": {
3021+
"default": "#FBFCFF",
3022+
"hover": "lch(99 1.55 272)"
3023+
},
3024+
"stroke": {
3025+
"default": "#e6e7e9",
3026+
"hover": "rgb(81% 82.1% 83.6%)"
3027+
}
3028+
}
30173029
}
30183030
},
30193031
"transition": {
30203032
"default": "all 100ms ease-in 0ms",
30213033
"duration": {
30223034
"slow": "300ms",
3035+
"smooth": "150ms",
30233036
"medium": "100ms",
30243037
"fast": "50ms"
30253038
},
@@ -3470,7 +3483,8 @@
34703483
"1": "0 4px 6px -1px lch(6.77 0 0 / 0.15), 0 2px 4px -1px lch(6.77 0 0 / 0.15)",
34713484
"2": "0 4px 4px 0 rgba(88, 92, 98, 0.06), inset 5px 0 10px 0 rgba(104, 105, 111, 0.1)",
34723485
"3": "-5px 0 20px 0 rgba(0, 0, 0, 0.08), -6px 0 10px 0 rgba(0, 0, 0, 0.08)",
3473-
"4": "5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08)"
3486+
"4": "5px 0 20px 0 rgba(0, 0, 0, 0.08), 6px 0 10px 0 rgba(0, 0, 0, 0.08)",
3487+
"5": "0 2px 2px 0 rgba(0, 0, 0, 0.03)"
34743488
},
34753489
"breakpoint": {
34763490
"sizes": {

src/styles/variables.light.json

+12
Original file line numberDiff line numberDiff line change
@@ -1604,6 +1604,18 @@
16041604
"slate": "#9a9ea7"
16051605
}
16061606
}
1607+
},
1608+
"serviceCard": {
1609+
"color": {
1610+
"background": {
1611+
"default": "#FBFCFF",
1612+
"hover": "lch(99 1.55 272)"
1613+
},
1614+
"stroke": {
1615+
"default": "#e6e7e9",
1616+
"hover": "rgb(81% 82.1% 83.6%)"
1617+
}
1618+
}
16071619
}
16081620
},
16091621
"name": "light",

0 commit comments

Comments
 (0)