shows predicted bleeding with red circles, also sets up today formatting

This commit is contained in:
tina
2018-09-14 16:41:27 +02:00
parent ae18e19ffa
commit 20c0867422
2 changed files with 51 additions and 12 deletions
+7 -1
View File
@@ -2,9 +2,9 @@ import { StyleSheet } from 'react-native'
export const primaryColor = '#ff7e5f'
export const secondaryColor = '#351c4d'
export const secondaryColorLight = '#91749d'
export const fontOnPrimaryColor = 'white'
export const shadesOfRed = ['#ffcbbf', '#ffb19f', '#ff977e', '#ff7e5f'] // light to dark
export const shadesOfGrey = ['#e5e5e5', '#cccccc'] // [lighter, darker]
const defaultBottomMargin = 5
const defaultIndentation = 10
@@ -243,6 +243,12 @@ export default StyleSheet.create({
},
page: {
marginHorizontal: 10
},
calendarToday: {
fontWeight: 'bold',
fontSize: 20,
color: secondaryColor,
marginTop: 1
}
})