@aire-ux/aire-overlay
Version:
10 lines (8 loc) • 300 B
text/typescript
import { color } from '@vaadin/vaadin-lumo-styles/color.js';
import { typography } from '@vaadin/vaadin-lumo-styles/typography.js';
const tpl = document.createElement('template');
tpl.innerHTML = `<style>
${color.cssText}
${typography.cssText}
</style>`;
document.head.appendChild(tpl.content);