You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// eagerly import theme styles so as we can override them
|
|
import '@vaadin/vaadin-lumo-styles/all-imports';
|
|
|
|
const $_documentContainer = document.createElement('template');
|
|
|
|
$_documentContainer.innerHTML = `
|
|
<custom-style>
|
|
<style include='lumo-badge'>
|
|
html {
|
|
--lumo-body-text-color: #fff;
|
|
|
|
}
|
|
|
|
</style>
|
|
</custom-style>
|
|
|
|
|
|
`;
|
|
|
|
document.head.appendChild($_documentContainer.content);
|