-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(front): add safe area for mobile * fix(front): reduce safe area size * fix(front): remove padding bottom from safe area and resize bottom nav * style: updated color palette * refactor: moved Button colors inside color palette * feat: integrated tabs from Figma mockup * refactor: optimized code by propagating props and fixed color palette * refactor: deleted useless pages and moved SafeAreaProvider and IconContextProvider inside root layout instead of tabs root layout * fix: annoying scroll issue --------- Co-authored-by: MAXOUXAX <[email protected]>
- Loading branch information
1 parent
047fe65
commit b73e1bc
Showing
6 changed files
with
98 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,15 @@ | ||
const tintColorLight = "#2f95dc"; | ||
const tintColorDark = "#fff"; | ||
const fakeBlack = "#1A1A1A"; | ||
|
||
export default { | ||
light: { | ||
text: "#000", | ||
success: "#13863C", | ||
danger: "#F33F33", | ||
text: fakeBlack, | ||
black: fakeBlack, | ||
background: "#f2f2f2", | ||
tint: tintColorLight, | ||
tabIconDefault: "#ccc", | ||
tabIconSelected: tintColorLight, | ||
}, | ||
dark: { | ||
text: "#fff", | ||
background: "#000", | ||
tint: tintColorDark, | ||
tabIconDefault: "#ccc", | ||
tabIconSelected: tintColorDark, | ||
tabIconDefault: fakeBlack, | ||
tabIconSelected: fakeBlack, | ||
}, | ||
}; |