You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

global.js 957B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { StyleSheet } from "react-native";
  2. // Fonts
  3. const regularFont = "poppins-regular";
  4. const semiBoldFont = "poppins-semibold";
  5. // Colors
  6. const primary = "#AD40AF";
  7. const secondary = "#333";
  8. export const globalStyles = StyleSheet.create({
  9. boldText: {
  10. fontSize: 28,
  11. fontWeight: "500",
  12. color: secondary,
  13. marginBottom: 30,
  14. fontFamily: semiBoldFont,
  15. },
  16. primaryBold: {
  17. color: primary,
  18. fontWeight: "700",
  19. fontFamily: semiBoldFont,
  20. },
  21. iconButton: {
  22. borderColor: "#ddd",
  23. borderWidth: 2,
  24. borderRadius: 10,
  25. paddingHorizontal: 30,
  26. paddingVertical: 10,
  27. },
  28. regularText: {
  29. fontFamily: regularFont,
  30. },
  31. regularCenteredText: {
  32. textAlign: "center",
  33. color: "#666",
  34. marginBottom: 30,
  35. fontFamily: regularFont,
  36. },
  37. safeArea: {
  38. flex: 1,
  39. justifyContent: "center",
  40. },
  41. button: {
  42. backgroundColor: primary,
  43. padding: 10,
  44. width: 100,
  45. borderRadius: 10
  46. }
  47. });