Currently, I'm in the process of developing a TVML app specifically for the Apple TV. Lately, I've been experimenting with making some style adjustments to various elements within the app.
Following the guidance provided in the TVML documentation, I managed to successfully change the text color from white to black using this code:
<description style="color: rgba(0, 0, 0)">
Selvage banjo authentic messenger bag, pork belly occupy heirloom...etc
</description>
Now, I am looking to further enhance the styling by adjusting other properties like font-weight
to light
, and font-size
.
Here are a few attempts I made:
1
<description style="color: rgba(0, 0, 0); font-weight: light">
text goes here
</description>
2
<description style="color: rgba(0, 0, 0) font-weight: light">
text goes here
</description>
3
<description style="font-weight: light">
text goes here
</description>
4
<description font-weight="light">
text goes here
</description>
Unfortunately, I haven't been able to make these changes work as expected. Currently, I am utilizing the descriptiveAlertTemplate
.