arthur-eudeline
2/12/2019 - 9:34 AM

StyleSheet

import style from './stylesheet/main-theme';
import React from 'react';
import {StyleSheet} from 'react-native';

const colors = {
  main: "#2b4887",
  black: "#252935",
  textColor: "#222222"
};

export default StyleSheet.create({
  h1: {
    fontSize: 22,
    fontWeight: "bold",
    color: colors.main,
    marginTop: 20,
    marginBottom: 10
  },

  card: {
    backgroundColor: "#FFFFFF",
    padding: 10,
    marginVertical: 15,
    marginHorizontal: 5,
    borderRadius: 3,
    shadowColor: "#000",
    shadowOffset: {
      width: 0,
      height: 7,
    },
    shadowOpacity: 0.5,
    shadowRadius: 9,
    elevation: 5,
  }
})