import os
import vizro.models as vm
from vizro import Vizro
page = vm.Page(
title="Changing the header color",
components=[
vm.Card(
text="""
# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag
""")
],
)
dashboard = vm.Dashboard(pages=[page])
Vizro().build(dashboard).run()