UNPKG

oda-framework

Version:

It's an ES Progressive Framework based on the technology of Web Components and designed especially for creating custom UI/UX of any complexity for web and cross-platform PWA mobile applications.

14 lines (13 loc) 389 B
<meta charset="utf-8"> <script type="module"> import '../../../oda.js'; import './palette.js'; </script> <oda-tester> <oda-palette id="palette" colors="10" gradients="10"></oda-palette> </oda-tester> <script> palette.addEventListener('color-changed', (e)=>{ e.target.parentElement.style.setProperty('background-color', e.detail.value) }) </script>