Advertisement
Guest User

styles

a guest
Feb 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1.  
  2. export const colors = {
  3. green_primary: '#009058',
  4. green_primary_dark: '#05774b',
  5. pink_accent: '#bb1f70',
  6. pink_accent_light: '#f9399c',
  7. white: '#ffffff',
  8. grey_light: '#F5F5F5',
  9. grey: '#dcdcdc',
  10. grey_dark: '#656463',
  11. black: '#000000',
  12. sans_light: '#565b5e',
  13. shadow: '#000000',
  14.  
  15. };
  16.  
  17. export default {
  18. scene: {
  19. backgroundColor: colors.white,
  20. shadowColor: colors.shadow,
  21. },
  22. scrollView: {
  23. backgroundColor: colors.white,
  24. },
  25. defaultButton: {
  26. backgroundColor: colors.green_primary,
  27. height: 50,
  28. borderRadius: 5,
  29. marginBottom: 2,
  30. paddingHorizontal: 5,
  31. },
  32. defaultContainerButton: {
  33. marginVertical: 10,
  34. },
  35. view: {},
  36. };
  37.  
  38. export const baseComponent = {
  39. wrapper: {
  40. flex: 1,
  41. },
  42. };
  43.  
  44. export const DEFAULT_MARGIN = 16;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement