add register and login screens

This commit is contained in:
Jorrin
2024-04-20 00:11:02 +02:00
parent fcfd0d99cc
commit bbeb729156
20 changed files with 555 additions and 103 deletions

View File

@@ -6,21 +6,37 @@ export const MWInput = styled(Input, {
variants: {
type: {
default: {
backgroundColor: "$inputBackground",
color: "$inputText",
placeholderTextColor: "$placeHolderText",
borderColor: "$inputBorder",
backgroundColor: "$ash600",
color: "$ash100",
placeholderTextColor: "$ash200",
borderColor: "$ash500",
outlineStyle: "none",
focusStyle: {
borderColor: "$ash300",
},
},
search: {
backgroundColor: "$searchBackground",
backgroundColor: "$shade500",
color: "$shade100",
borderColor: "$colorTransparent",
placeholderTextColor: "$searchPlaceholder",
placeholderTextColor: "$shade100",
outlineStyle: "none",
focusStyle: {
borderColor: "$colorTransparent",
},
},
authentication: {
backgroundColor: "$shade500",
color: "$shade100",
placeholderTextColor: "$shade400",
outlineStyle: "none",
focusStyle: {
borderColor: "$shade300",
},
pressStyle: {
backgroundColor: "$shade500",
},
},
},
},
});