Change font color of marked calendar days

This commit is contained in:
Lisa
2020-12-30 15:07:03 +00:00
committed by Sofiya Tepikin
parent ab1acf21ba
commit af5c24c466
9 changed files with 47 additions and 49 deletions
+3 -3
View File
@@ -54,11 +54,11 @@ export default class DotAndLine extends Component {
const dot = new Path().moveTo(CHART_COLUMN_MIDDLE , y - CHART_DOT_RADIUS)
.arc(0, CHART_DOT_RADIUS * 2, CHART_DOT_RADIUS)
.arc(0, CHART_DOT_RADIUS * -2, CHART_DOT_RADIUS)
const dotColor = exclude ? Colors.tourquise : Colors.tourquiseDark
const dotColor = exclude ? Colors.turquoise : Colors.turquoiseDark
const lineColorLeft = excludeLeftLine ?
Colors.tourquise : Colors.tourquiseDark
Colors.turquoise : Colors.turquoiseDark
const lineColorRight = excludeRightLine ?
Colors.tourquise : Colors.tourquiseDark
Colors.turquoise : Colors.turquoiseDark
return(
<React.Fragment>