diff --git a/app/(app)/History/CardComponent.tsx b/app/(app)/History/CardComponent.tsx index a85999c7..c1a959c7 100644 --- a/app/(app)/History/CardComponent.tsx +++ b/app/(app)/History/CardComponent.tsx @@ -35,7 +35,7 @@ function DoctorComponent({ flexDirection: "row", alignItems: "center", justifyContent: "space-between", - backgroundColor: theme ==="dark"? Colors.dark._2 : Colors.others.white, + backgroundColor: theme ==="dark"? Colors.dark._1 : Colors.others.white, padding: 20, shadowOffset: { width: -2, height: 4 }, shadowOpacity: 3, diff --git a/app/(app)/History/MessageHistory/Chats.tsx b/app/(app)/History/MessageHistory/Chats.tsx index 4d5ce442..5b1c1350 100644 --- a/app/(app)/History/MessageHistory/Chats.tsx +++ b/app/(app)/History/MessageHistory/Chats.tsx @@ -71,7 +71,7 @@ function ChatMessaging() { return ( = ({closeMenu})=>{ return( { { flex: 1, flexDirection: "column", padding: 20, - backgroundColor: theme === "dark" ? Colors.others.black : Colors.others.white, + backgroundColor: theme === "dark" ? Colors.dark._1 : Colors.others.white, }} > diff --git a/app/(app)/_layout.tsx b/app/(app)/_layout.tsx index 459dbacf..a3e790e1 100644 --- a/app/(app)/_layout.tsx +++ b/app/(app)/_layout.tsx @@ -38,7 +38,7 @@ export default function Layout() { display: tabVisible ? "flex" : "none", flexDirection: "row", justifyContent: "space-between", - backgroundColor: theme === "dark"? Colors.others.black : Colors.others.white, + backgroundColor: theme === "dark"? Colors.dark._1 : Colors.others.white, paddingHorizontal: 30, paddingVertical: 25, diff --git a/app/(app)/index.tsx b/app/(app)/index.tsx index 7b2732d4..1603341b 100644 --- a/app/(app)/index.tsx +++ b/app/(app)/index.tsx @@ -8,8 +8,7 @@ import React from "react"; export default function Index() { useEffect(() => { setTimeout(() => { - // router.push("onBoarding/FirstScreen"); - router.push("History"); + router.push("onBoarding/FirstScreen"); }, 3000); }, []);