Skip to content

Commit 6600081

Browse files
committed
feat: add magenta and crimson color palettes
- Add true magenta palette (purple-pink) with base color #E600AC - Add crimson palette (pure red) with base color #F91313 - Preserve existing red palette for backward compatibility - Export both new palettes in colors index Closes #602
1 parent 9491679 commit 6600081

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

src/theme/colors/colors.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,26 @@ export const red = {
164164
10: '#660624'
165165
};
166166

167+
export const magenta = {
168+
70: '#FFF0FA',
169+
60: '#FFB3E6',
170+
50: '#FF66CC',
171+
40: '#E600AC',
172+
30: '#B30086',
173+
20: '#800060',
174+
10: '#4D0039'
175+
};
176+
177+
export const crimson = {
178+
70: '#FFE6E6',
179+
60: '#FFADAD',
180+
50: '#FF7070',
181+
40: '#F91313',
182+
30: '#CC0F0F',
183+
20: '#8C0A0A',
184+
10: '#660707'
185+
};
186+
167187
export const redOrange = {
168188
70: '#E8BEB3',
169189
60: '#E1A999',

src/theme/colors/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export {
5151
carribean,
5252
casper,
5353
charcoal,
54+
crimson,
5455
common,
5556
connected,
5657
cultured,
@@ -61,6 +62,7 @@ export {
6162
green,
6263
jungleGreen,
6364
keppel,
65+
magenta,
6466
notificationColors,
6567
patternsBlue,
6668
primaryColor,

0 commit comments

Comments
 (0)