diff --git a/frontend/assets/deguapp_logo.png b/frontend/assets/deguapp_logo.png new file mode 100644 index 0000000..a2cfd06 Binary files /dev/null and b/frontend/assets/deguapp_logo.png differ diff --git a/frontend/components/Button.js b/frontend/components/Button.js index 624dcc3..93199d2 100644 --- a/frontend/components/Button.js +++ b/frontend/components/Button.js @@ -5,7 +5,16 @@ export default function Button(props) { const { onPress, title = "Save", color = "black" } = props; return ( [ + { + backgroundColor: pressed + ? "rgb(210, 230, 255 )" + : color + ? color + : "black", + }, + styles.button, + ]} onPress={onPress} > {title} @@ -21,7 +30,6 @@ const styles = StyleSheet.create({ paddingHorizontal: 32, borderRadius: 4, elevation: 3, - backgroundColor: "black", }, text: { fontSize: 16, diff --git a/frontend/components/style.js b/frontend/components/style.js index e47df1f..5da40b5 100644 --- a/frontend/components/style.js +++ b/frontend/components/style.js @@ -1,5 +1,6 @@ export const colors = { gold: "#FFD700ff", + gold: "#ffa500", brown: "#8B4513ff", green: "#228B22ff", charcoal: "#2C3E50ff", diff --git a/frontend/screens/Login.js b/frontend/screens/Login.js index b6a3300..8081d33 100644 --- a/frontend/screens/Login.js +++ b/frontend/screens/Login.js @@ -4,6 +4,7 @@ import { TextInput, View, Text, + Image, } from "react-native"; import Button from "../components/Button"; import { colors } from "../components/style"; @@ -11,27 +12,46 @@ import { colors } from "../components/style"; export function LoginForm() { return ( - Please Log In - - - -