Navigation components and layout elements with minimal markup.
Accordion (Classless)
Just use <details> and <summary> - fully
styled with no classes!
What is Pico-Daisy?
Pico-Daisy is a premium CSS theme for PicoCSS v2 that adds DaisyUI-style components with
glassmorphism, gradients, and smooth animations - all while maintaining a classless-first
approach.
Do I need JavaScript?
No! All components work with pure HTML and CSS. The native <details> element handles the
accordion behavior.
How do I customize colors?
Override the CSS custom properties like --daisy-primary,
--daisy-secondary, etc. in your own stylesheet.
The native <dialog> element is beautifully styled.
<dialogid="my-modal"><header><h3>Title</h3></header><p>Content here...</p><footer><buttononclick="this.closest('dialog').close()">Close</button></footer></dialog><buttononclick="document.getElementById('my-modal').showModal()">
Open Modal
</button>