Skip to main content

Goal Choice Radio

goalChoiceRadio is a template that supports single-choice radio buttons.

KeyNotes
typegoalChoiceRadio
stepIdUnique step id
titleThe step title
subtitleThe step subtitle
choiceBackgroundColorThe choices background color
choiceTextColorThe choices text color
hoverBackgroundColorThe background color on hovering one of the choice.
selectedCheckboxBackgroundColorThe color of the selected choice.
checkboxBackgroundColorThe color of the selected choice.
backgroundImageBackground image for mobile
desktopBackgroundBackground image for desktop
choicesAn array of the choices on that step

"choices": [
    {
        "name": "Yes",
        "value": "Yes"
    },
    {
        "name": "No",
        "value": "No"
    }
]
textColorThe main textColor on the page
ctaTextThe text of the main button
ctaColorThe text color of the main button
ctaBackgroundColorThe background color of the main button
ctaHoverBackgroundColorThe background of the main button on hovering.
backButtonColorThe text color of the back button
backButtonBackgroundColorThe background color of the back button
backButtonTextThe text of the back button

Example

goalChoiceRadio Step
{
"type": "goalChoiceRadio",
"stepId": "goal_choice_radio",
"title": "Do you exercise regularly?",
"textColor": "#2F0191",
"feedbackType": "radio",
"backgroundColor": "#FFF",
"hoverBackgroundColor": "#E7EBFF",
"choiceBackgroundColor": "#F5F7FF",
"choiceTextColor": "#2F0191",
"selectedCheckboxBackgroundColor": "##2F0191",
"checkboxBackgroundColor": "#FFF",
"backgroundImage": "https://c.thefab.co/fabulous/onboarding/fabulous_web/amber_mobile.jpg",
"desktopBackground": "https://c.thefab.co/fabulous/onboarding/fabulous_web/amber_desktop.jpg",
"ctaText": "Continue",
"ctaColor": "#FFF",
"ctaBackgroundColor": "#FF8E21",
"ctaHoverBackgroundColor": "#E67100",
"backButtonColor": "#FFA133",
"backButtonBackgroundColor": "#FFF8F1",
"backButtonText": "Back",
"choices": [
{
"name": "Yes",
"value": "Yes"
},
{
"name": "No",
"value": "No"
}
]
},