Skip to content

Commit 8da8008

Browse files
authored
Merge pull request #778 from primer/more-pink
Add More Pink to Primer! 💖🌸💕🌷💞🎀💗🌺💝
2 parents 72d1309 + b2293f9 commit 8da8008

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

src/support/variables/color-system.scss

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,16 @@ $purple-800: #3a1d6e !default;
8585
$purple-900: #29134e !default;
8686

8787
// -------- Pink --------
88-
$pink-500: #ea4aaa;
88+
$pink-000: #ffeef8 !default;
89+
$pink-100: #fedbf0 !default;
90+
$pink-200: #f9b3dd !default;
91+
$pink-300: #f692ce !default;
92+
$pink-400: #ec6cb9 !default;
93+
$pink-500: #ea4aaa !default;
94+
$pink-600: #d03592 !default;
95+
$pink-700: #b93a86 !default;
96+
$pink-800: #99306f !default;
97+
$pink-900: #6d224f !default;
8998

9099
// -------- Fades --------
91100
// Black based on same hue as $gray-900
@@ -209,6 +218,19 @@ $purples: (
209218
9: $purple-900,
210219
) !default;
211220

221+
$pinks: (
222+
0: $pink-000,
223+
1: $pink-100,
224+
2: $pink-200,
225+
3: $pink-300,
226+
4: $pink-400,
227+
5: $pink-500,
228+
6: $pink-600,
229+
7: $pink-700,
230+
8: $pink-800,
231+
9: $pink-900,
232+
) !default;
233+
212234
$hue-maps: (
213235
gray: $grays,
214236
blue: $blues,
@@ -217,4 +239,5 @@ $hue-maps: (
217239
orange: $oranges,
218240
red: $reds,
219241
purple: $purples,
242+
pink: $pinks,
220243
) !default;

src/support/variables/colors.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ $bg-green-light: $green-100 !default;
4949
$bg-orange: $orange-700 !default;
5050
$bg-purple: $purple-500 !default;
5151
$bg-purple-light: $purple-000 !default;
52+
$bg-pink: $pink-500 !default;
5253
$bg-red: $red-500 !default;
5354
$bg-red-light: $red-100 !default;
5455
$bg-white: $white !default;
@@ -64,5 +65,6 @@ $text-green: $green-500 !default;
6465
$text-orange: $orange-900 !default;
6566
$text-orange-light: $orange-600 !default;
6667
$text-purple: $purple !default;
68+
$text-pink: $pink-500 !default;
6769
$text-red: $red-600 !default;
6870
$text-white: $white !default;

src/utilities/colors.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
.bg-yellow-light { background-color: $bg-yellow-light !important; }
3030
/* Set the background to $bg-purple */
3131
.bg-purple { background-color: $bg-purple !important; }
32+
/* Set the background to $bg-pink */
33+
.bg-pink { background-color: $bg-pink !important; }
3234
/* Set the background to $bg-purple-light */
3335
.bg-purple-light { background-color: $bg-purple-light !important; }
3436

@@ -65,6 +67,8 @@
6567
.text-orange-light { color: $text-orange-light !important; }
6668
/* Set the text color to $text-purple */
6769
.text-purple { color: $text-purple !important; }
70+
/* Set the text color to $text-pink */
71+
.text-pink { color: $text-pink !important; }
6872
/* Set the text color to $text-white */
6973
.text-white { color: $text-white !important; }
7074
/* Set the text color to inherit */

0 commit comments

Comments
 (0)