1313// - contrast-rgb: The contrast color in RGB format
1414// - shade: 12% darker version of the base color (mix with black), used for pressed/active states
1515// - tint: 10% lighter version of the base color (mix with white), used for focused/hover states
16- // - foreground: The main color used for text and foreground elements
1716
1817$primary : #0054e9 ;
1918$secondary : #0163aa ;
@@ -34,7 +33,6 @@ $colors: (
3433 contrast-rgb : color-to-rgb-list (#fff ),
3534 shade : get-color-shade ($primary ),
3635 tint : get-color-tint ($primary ),
37- foreground : $primary ,
3836 ),
3937 ),
4038 secondary : (
@@ -45,7 +43,6 @@ $colors: (
4543 contrast-rgb : color-to-rgb-list (#fff ),
4644 shade : get-color-shade ($secondary ),
4745 tint : get-color-tint ($secondary ),
48- foreground : $secondary ,
4946 ),
5047 ),
5148 tertiary : (
@@ -56,7 +53,6 @@ $colors: (
5653 contrast-rgb : color-to-rgb-list (#fff ),
5754 shade : get-color-shade ($tertiary ),
5855 tint : get-color-tint ($tertiary ),
59- foreground : $tertiary ,
6056 ),
6157 ),
6258 success : (
@@ -67,7 +63,6 @@ $colors: (
6763 contrast-rgb : color-to-rgb-list (#000 ),
6864 shade : get-color-shade ($success ),
6965 tint : get-color-tint ($success ),
70- foreground : $success ,
7166 ),
7267 ),
7368 warning : (
@@ -78,7 +73,6 @@ $colors: (
7873 contrast-rgb : color-to-rgb-list (#000 ),
7974 shade : get-color-shade ($warning ),
8075 tint : get-color-tint ($warning ),
81- foreground : $warning ,
8276 ),
8377 ),
8478 danger : (
@@ -89,7 +83,6 @@ $colors: (
8983 contrast-rgb : color-to-rgb-list (#fff ),
9084 shade : get-color-shade ($danger ),
9185 tint : get-color-tint ($danger ),
92- foreground : $danger ,
9386 ),
9487 ),
9588 light : (
@@ -100,7 +93,6 @@ $colors: (
10093 contrast-rgb : color-to-rgb-list (#000 ),
10194 shade : get-color-shade ($light ),
10295 tint : get-color-tint ($light ),
103- foreground : $light ,
10496 ),
10597 ),
10698 medium : (
@@ -111,7 +103,6 @@ $colors: (
111103 contrast-rgb : color-to-rgb-list (#fff ),
112104 shade : get-color-shade ($medium ),
113105 tint : get-color-tint ($medium ),
114- foreground : $medium ,
115106 ),
116107 ),
117108 dark : (
@@ -122,7 +113,6 @@ $colors: (
122113 contrast-rgb : color-to-rgb-list (#fff ),
123114 shade : get-color-shade ($dark ),
124115 tint : get-color-tint ($dark ),
125- foreground : $dark ,
126116 ),
127117 ),
128118);
0 commit comments