Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/theme/colors/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export const yellow = {
10: '#663A00'
};

export const red = {
export const magenta = {
70: '#FFF0F0',
60: '#FFB3B9',
50: '#FF6179',
Expand All @@ -164,6 +164,16 @@ export const red = {
10: '#660624'
};

export const red = {
70: '#FFE6E6',
60: '#FFADAD',
50: '#FF7070',
40: '#F91313',
30: '#CC0F0F',
20: '#8C0A0A',
10: '#660707'
};

export const redOrange = {
70: '#E8BEB3',
60: '#E1A999',
Expand Down
1 change: 1 addition & 0 deletions src/theme/colors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export {
green,
jungleGreen,
keppel,
magenta,
notificationColors,
patternsBlue,
primaryColor,
Expand Down
24 changes: 12 additions & 12 deletions src/theme/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,11 +381,11 @@ export const lightModePalette: PaletteOptions = {
tertiary: Colors.yellow[70]
},
error: {
default: Colors.red[30],
hover: Colors.red[20],
pressed: Colors.red[10],
secondary: Colors.red[60],
tertiary: Colors.red[70]
default: Colors.magenta[30],
hover: Colors.magenta[20],
pressed: Colors.magenta[10],
secondary: Colors.magenta[60],
tertiary: Colors.magenta[70]
},
code: Colors.charcoal[90],

Expand All @@ -406,7 +406,7 @@ export const lightModePalette: PaletteOptions = {
info: Colors.blue[40],
success: Colors.green[30],
warning: Colors.yellow[30],
error: Colors.red[30],
error: Colors.magenta[30],
neutral: {
default: Colors.charcoal[40],
alt: Colors.charcoal[40]
Expand Down Expand Up @@ -543,11 +543,11 @@ export const darkModePalette: PaletteOptions = {
tertiary: Colors.yellow[10]
},
error: {
default: Colors.red[40],
hover: Colors.red[50],
pressed: Colors.red[60],
secondary: Colors.red[20],
tertiary: Colors.red[10]
default: Colors.magenta[40],
hover: Colors.magenta[50],
pressed: Colors.magenta[60],
secondary: Colors.magenta[20],
tertiary: Colors.magenta[10]
},
code: Colors.charcoal[10],
constant: {
Expand All @@ -567,7 +567,7 @@ export const darkModePalette: PaletteOptions = {
info: Colors.blue[40],
success: Colors.green[40],
warning: Colors.yellow[40],
error: Colors.red[40],
error: Colors.magenta[40],
neutral: {
default: Colors.accentGrey[100],
alt: Colors.keppel[40]
Expand Down
Loading