aboutsummaryrefslogtreecommitdiffstats
path: root/App.js
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2023-04-13 22:31:47 +0200
committerMaksymilian Jopek <maks@jopek.eu>2023-04-13 22:49:24 +0200
commit50235bc304db2e309d2de63452f301139fc3f9cc (patch)
tree1453b045888657bece5f5de74e580834858e9e29 /App.js
parent1cb36cd073252f4a185cd9775382da4c6861a8cb (diff)
downloadremarques-master.tar.gz
remarques-master.tar.zst
remarques-master.zip
Change colorsHEADmaster
Fix bug in Options.js Add License Add node version
Diffstat (limited to 'App.js')
-rw-r--r--App.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/App.js b/App.js
index ac60ce3..7e4caf5 100644
--- a/App.js
+++ b/App.js
@@ -21,7 +21,7 @@ function App() {
title: 'Notes list',
headerRight: () => <TouchableOpacity onPress={() => window.navigation.navigate("options")}><Image source={kIcon} style={{ width: 30, height: 30, marginRight: 10 }} /></TouchableOpacity>,
headerStyle: {
- backgroundColor: '#ff0000',
+ backgroundColor: '#ff5a5a',
},
headerTintColor: '#ffffff',
headerTitleStyle: {
@@ -31,7 +31,7 @@ function App() {
<Drawer.Screen name="addNote" component={NoteView} options={{
title: 'Add note',
headerStyle: {
- backgroundColor: '#0000FF',
+ backgroundColor: '#b9e1ff',
},
headerTintColor: '#ffffff',
headerTitleStyle: {
@@ -42,7 +42,7 @@ function App() {
<Drawer.Screen name="editNote" component={NoteView} options={{
title: 'Edit note',
headerStyle: {
- backgroundColor: 'darkgreen',
+ backgroundColor: '#49d96c',
},
headerTintColor: '#ffffff',
headerTitleStyle: {
@@ -53,7 +53,7 @@ function App() {
<Drawer.Screen name="addCategory" component={CategoryView} options={{
title: 'Add category',
headerStyle: {
- backgroundColor: 'darkorange',
+ backgroundColor: '#f5ac58',
},
headerTintColor: '#ffffff',
headerTitleStyle: {