react-native-surveys
Version:
Build your own forms, surveys and polls for your React Native apps.
29 lines (28 loc) • 630 B
JavaScript
export const colors = {
main: "#2200FF",
yellow: "#f6b745",
google: "#0E5DF9",
error: "#f13a59",
success: "#00C853",
warning: "#FF9800",
required: "#f13a59",
add: "#007A5A",
border: "#E9E9E9",
buttonBorder: "#dbdfe4",
white: "#ffffff",
background: "#FDFDFD",
darkgrey: "#424d57",
grey: "#647384",
lightgrey: "#9da6b2",
toastError: "#d64646",
toastSuccess: "#4bb678",
toastWarning: "#efa842",
toastInfo: "#5ca8f5",
primary: "#1a2329",
secondary: "#7F8286"
};
export const MAX_FORM_WIDTH = 600;
export function validateEmail(email) {
const re = /\S+@\S+\.\S+/;
return re.test(email);
}