Last active
April 17, 2019 17:24
-
-
Save stanleykerr/49f440904604929a90e297c08c03855a to your computer and use it in GitHub Desktop.
Load options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const options = jsyaml.load(` | |
--- | |
style: | |
container: | |
background: rgb(236, 240, 241) | |
padding: 10 | |
borderRadius: 10 | |
weekContainer: | |
marginTop: 10 | |
borderRadius: 10 | |
unselected: | |
label: | |
fontWeight: 300 | |
fontSize: 13 | |
transition: font-size .25s ease-in-out | |
slider: | |
background: rgb(46, 204, 113) | |
week: | |
- background: white | |
color: gray | |
justifyContent: center | |
padding: 7 | |
fontSize: 14 | |
- background: white | |
color: gray | |
justifyContent: center | |
padding: 7 | |
fontSize: 14 | |
selected: | |
label: | |
fontWeight: 400 | |
fontSize: 15 | |
transition: all .25s ease-in-out | |
slider: | |
background: rgb(52, 152, 219) | |
week: | |
- background: rgb(46, 204, 113) | |
color: white | |
fontWeight: 500 | |
justifyContent: center | |
padding: 10 | |
fontSize: 15 | |
- background: rgb(52, 152, 219) | |
color: white | |
fontWeight: 500 | |
justifyContent: center | |
padding: 10 | |
fontSize: 15 | |
text: | |
twoWeeksOn: Two weeks On | |
everyOtherWeek: Every other Week | |
weeks: | |
- 1st Week | |
- 2nd Week | |
- 3rd Week | |
- 4th Week | |
options: | |
rounded: true | |
binaryOutput: true | |
soundUrl: https://storage.googleapis.com/mrble-assets/click.wav | |
`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment