yuan-elements
Version:
This package consists of React Native components that will be used by the Yuan app in its development.
109 lines (107 loc) • 1.93 kB
JavaScript
import { ColorScheme } from "./ColorScheme";
import { DefaultStyles } from "./DefaultStyles";
export const ActivityStyle = {
cardTitle: {
fontSize: 24,
color: "#FFF",
fontWeight: "700",
marginLeft: 20,
fontFamily: DefaultStyles.fontFamily
},
cardDate: {
fontSize: 13,
color: "#FFF",
fontWeight: "700",
paddingBottom: 3,
marginLeft: 20
},
cardLocation: {
fontSize: 11,
color: "#FFF",
fontWeight: "600",
marginLeft: 5
},
linearGradient: {
backgroundColor: "transparent",
position: "absolute",
top: 0,
bottom: 0,
left: 0,
right: 0
},
detailTitle: {
fontSize: 40,
color: "#FFF",
fontWeight: "700",
margin: 0,
marginLeft: 20
},
detailDate: {
fontSize: 20,
color: "#FFF",
fontWeight: "700",
margin: 5,
marginLeft: 20
},
detailScrollInfo: {
fontSize: 15,
color: "#FFF",
fontWeight: "800",
margin: 5,
marginLeft: 20
},
detailLocation: {
fontSize: 15,
color: "#FFF",
fontWeight: "700",
margin: 5
},
detailAmount: {
fontSize: 30,
color: "#FFF",
fontWeight: "700"
},
detailAmountTitle: {
fontSize: 13,
color: "#FFF",
fontWeight: "800"
},
smallCardTitle: {
fontSize: 15,
color: "#FFF",
fontWeight: "700",
marginLeft: 20
},
smallCardDate: {
fontSize: 10,
color: "#FFF",
fontWeight: "700",
paddingBottom: 3,
marginLeft: 20
},
smallCardLocation: {
fontSize: 8,
color: "#FFF",
fontWeight: "600",
marginLeft: 5
},
exploreCardTitle: {
fontSize: 20,
color: "#FFF",
fontWeight: "700",
marginLeft: 20
},
exploreCardDate: {
fontSize: 13,
color: "#FFF",
fontWeight: "700",
paddingBottom: 3,
marginLeft: 20
},
exploreCardLocation: {
fontSize: 12,
color: "#FFF",
fontWeight: "600",
marginLeft: 5
}
};