few color changes

This commit is contained in:
AngelV3rgs 2023-07-06 11:30:21 +08:00
parent 49aa0cb5a6
commit d51ab2082d
6 changed files with 27 additions and 24 deletions

View file

@ -6,7 +6,7 @@ import { RootState } from "../../features/redux/Store/Store";
import AnimatedContainer from "../../components/AnimatedContainer/AnimatedContainer";
export default function Home() {
const creds = useSelector((state: RootState) => state.auth.creds);
const creds = useSelector((state: RootState) => state.auth.creds);
return (
<View style={styles.background}>
<AnimatedContainer>

View file

@ -30,21 +30,20 @@ export default function Login() {
return (
<View style={styles.background}>
<AnimatedContainer>
<View style={styles.flex_row}>
<LoginIcon size={32} />
<Text style={styles.text_white_large}>Student Login</Text>
</View>
<View style={{ paddingVertical: 8 }} />
<View
style={{
paddingVertical: 4,
marginBottom: 16,
borderRadius: 4,
width: "90%",
backgroundColor: colors.blue_1,
backgroundColor: colors.head,
}}
/>
<View style={styles.flex_row}>
<LoginIcon size={32} />
<Text style={styles.text_white_large}>Student Login</Text>
</View>
<View style={{ paddingVertical: 8 }} />
<TextInput
style={styles.text_input}
placeholder="Username"
@ -104,13 +103,13 @@ export default function Login() {
}
});
}}
color={colors.blue_3}
color={colors.login_color}
>
<Text style={styles.text_white_small}>Login</Text>
</Button>
<Button
onPress={() => navigation.navigate("Register")}
color={colors.blue_3}
color={colors.reg_color}
>
<Text style={styles.text_white_small}>Register</Text>
</Button>

View file

@ -34,20 +34,21 @@ export default function Register() {
return (
<View style={styles.background}>
<AnimatedContainer>
<View style={styles.flex_row}>
<SignupIcon size={32} />
<Text style={styles.text_white_large}>Student Signup</Text>
<View style={{ paddingVertical: 8, }} />
</View>
<View
style={{
paddingVertical: 4,
marginBottom: 16,
marginTop: 8,
borderRadius: 4,
width: "90%",
backgroundColor: colors.blue_1,
backgroundColor: colors.head,
}}
/>
<View style={styles.flex_row}>
<SignupIcon size={32} />
<Text style={styles.text_white_large}>Student Signup</Text>
<View style={{ paddingVertical: 8 }} />
</View>
<TextInput
style={styles.text_input}
placeholder="First Name"
@ -166,7 +167,7 @@ export default function Register() {
{
}
}}
color={colors.blue_3}
color={colors.reg_color}
>
<Text style={styles.text_white_small}>Register</Text>
</Button>