summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/config.json8
-rw-r--r--gui/src/renderer/components/HeaderBar.tsx2
-rw-r--r--gui/src/renderer/components/SecuredLabel.tsx2
3 files changed, 6 insertions, 6 deletions
diff --git a/gui/src/config.json b/gui/src/config.json
index 9e11eea254..f735175d36 100644
--- a/gui/src/config.json
+++ b/gui/src/config.json
@@ -12,7 +12,7 @@
"blue": "rgb(41, 77, 115)",
"green": "rgb(68, 173, 77)",
"darkGreen": "rgb(32, 84, 37)",
- "red": "rgb(208, 2, 27)",
+ "red": "rgb(227, 64, 57)",
"darkYellow": "rgb(142, 78, 19)",
"yellow": "rgb(255, 213, 36)",
"white": "rgb(255, 255, 255)",
@@ -24,9 +24,9 @@
"blue40": "rgba(41, 77, 115, 0.4)",
"blue60": "rgba(41, 77, 115, 0.6)",
"blue80": "rgba(41, 77, 115, 0.8)",
- "red95": "rgba(208, 2, 27, 0.95)",
- "red40": "rgba(208, 2, 27, 0.40)",
- "red45": "rgba(208, 2, 27, 0.45)",
+ "red95": "rgba(227, 64, 57, 0.95)",
+ "red40": "rgba(227, 64, 57, 0.40)",
+ "red45": "rgba(227, 64, 57, 0.45)",
"green90": "rgba(68, 173, 77, 0.9)",
"green40": "rgba(68, 173, 77, 0.4)"
}
diff --git a/gui/src/renderer/components/HeaderBar.tsx b/gui/src/renderer/components/HeaderBar.tsx
index 71ef37186b..d2dc116dfb 100644
--- a/gui/src/renderer/components/HeaderBar.tsx
+++ b/gui/src/renderer/components/HeaderBar.tsx
@@ -42,7 +42,7 @@ const headerBarStyles = {
backgroundColor: 'rgb(25, 46, 69)', // colors.darkBlue
}),
error: Styles.createViewStyle({
- backgroundColor: 'rgb(208, 2, 27)', // colors.red
+ backgroundColor: 'rgb(227, 64, 57)', // colors.red
}),
success: Styles.createViewStyle({
backgroundColor: 'rgb(68, 173, 77)', // colors.green
diff --git a/gui/src/renderer/components/SecuredLabel.tsx b/gui/src/renderer/components/SecuredLabel.tsx
index dbe1791305..fc91a97773 100644
--- a/gui/src/renderer/components/SecuredLabel.tsx
+++ b/gui/src/renderer/components/SecuredLabel.tsx
@@ -22,7 +22,7 @@ const styles = {
color: 'rgb(68, 173, 77)', // green
}),
unsecured: Styles.createTextStyle({
- color: 'rgb(208, 2, 27)', // red
+ color: 'rgb(227, 64, 57)', // red
}),
};