Theme You can style dependent on the current theme using the snippet below. <style> @media tv-template and (tv-theme:light) { .foo { color: rgba(0,0,0); } } @media tv-template and (tv-theme:dark) { .foo { color: rgba(255,255,255); } } </style>