commit
fbb0d7090b
2 changed files with 8 additions and 7 deletions
|
@ -1,4 +1,5 @@
|
||||||
import { StyleSheet } from 'react-native';
|
import { StyleSheet } from 'react-native';
|
||||||
|
import Colors from './colors';
|
||||||
|
|
||||||
const discoverStyle = StyleSheet.create({
|
const discoverStyle = StyleSheet.create({
|
||||||
container: {
|
container: {
|
||||||
|
@ -27,12 +28,12 @@ const discoverStyle = StyleSheet.create({
|
||||||
marginLeft: 10
|
marginLeft: 10
|
||||||
},
|
},
|
||||||
categoryName: {
|
categoryName: {
|
||||||
fontFamily: 'Metropolis-Regular',
|
fontFamily: 'Metropolis-SemiBold',
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
marginLeft: 24,
|
marginLeft: 24,
|
||||||
marginTop: 16,
|
marginTop: 16,
|
||||||
marginBottom: 16,
|
marginBottom: 16,
|
||||||
color: '#40b89a'
|
color: Colors.Black
|
||||||
},
|
},
|
||||||
fileItem: {
|
fileItem: {
|
||||||
marginLeft: 24,
|
marginLeft: 24,
|
||||||
|
@ -48,7 +49,7 @@ const discoverStyle = StyleSheet.create({
|
||||||
fontFamily: 'Metropolis-SemiBold',
|
fontFamily: 'Metropolis-SemiBold',
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
marginTop: 4,
|
marginTop: 4,
|
||||||
color: '#c0c0c0'
|
color: Colors.LbryGreen
|
||||||
},
|
},
|
||||||
filePriceContainer: {
|
filePriceContainer: {
|
||||||
backgroundColor: '#61fcd8',
|
backgroundColor: '#61fcd8',
|
||||||
|
@ -58,7 +59,7 @@ const discoverStyle = StyleSheet.create({
|
||||||
top: 16,
|
top: 16,
|
||||||
width: 56,
|
width: 56,
|
||||||
height: 24,
|
height: 24,
|
||||||
borderRadius: 4
|
borderRadius: 4
|
||||||
},
|
},
|
||||||
filePriceText: {
|
filePriceText: {
|
||||||
fontFamily: 'Metropolis-Bold',
|
fontFamily: 'Metropolis-Bold',
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { StyleSheet, Dimensions } from 'react-native';
|
import { StyleSheet, Dimensions } from 'react-native';
|
||||||
import Colors from './colors';
|
import Colors from './colors';
|
||||||
|
|
||||||
const screenDimension = Dimensions.get('window');
|
const screenDimension = Dimensions.get('window');
|
||||||
const screenWidth = screenDimension.width;
|
const screenWidth = screenDimension.width;
|
||||||
|
|
||||||
const filePageStyle = StyleSheet.create({
|
const filePageStyle = StyleSheet.create({
|
||||||
|
@ -51,7 +51,7 @@ const filePageStyle = StyleSheet.create({
|
||||||
marginLeft: 20,
|
marginLeft: 20,
|
||||||
marginRight: 20,
|
marginRight: 20,
|
||||||
marginBottom: 20,
|
marginBottom: 20,
|
||||||
color: Colors.ChannelGrey
|
color: Colors.LbryGreen
|
||||||
},
|
},
|
||||||
description: {
|
description: {
|
||||||
color: Colors.DescriptionGrey,
|
color: Colors.DescriptionGrey,
|
||||||
|
@ -113,7 +113,7 @@ const filePageStyle = StyleSheet.create({
|
||||||
top: 16,
|
top: 16,
|
||||||
width: 56,
|
width: 56,
|
||||||
height: 24,
|
height: 24,
|
||||||
borderRadius: 4
|
borderRadius: 4
|
||||||
},
|
},
|
||||||
filePriceText: {
|
filePriceText: {
|
||||||
fontFamily: 'Metropolis-Bold',
|
fontFamily: 'Metropolis-Bold',
|
||||||
|
|
Loading…
Reference in a new issue