Skip to content

Commit 937e6b8

Browse files
committed
fix: update magenta palette to true magenta colors
- Changed magenta color values from rose-red to purple-pink shades - magenta[40] now #E600AC (true magenta) instead of #ff385c (rose-red) - magenta palette now uses proper purple-pink spectrum - Addresses reviewer feedback on color accuracy Signed-off-by: Jeet Burman <jeetburrman@gmail.com>
1 parent 37825a0 commit 937e6b8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/theme/colors/colors.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,13 @@ export const yellow = {
155155
};
156156

157157
export const magenta = {
158-
70: '#FFF0F0',
159-
60: '#FFB3B9',
160-
50: '#FF6179',
161-
40: '#ff385c',
162-
30: '#B3153D',
163-
20: '#8C0a2F',
164-
10: '#660624'
158+
70: '#FFF0FA',
159+
60: '#FFB3E6',
160+
50: '#FF66CC',
161+
40: '#E600AC',
162+
30: '#B30086',
163+
20: '#800060',
164+
10: '#4D0039'
165165
};
166166

167167
export const red = {

0 commit comments

Comments
 (0)