Skip Navigation Website Accessibility
 


Mahalo Rainbow Light Blue

available at

Low in-store inventory, may be subject to change.

Mahalo Rainbow Series ukuleles feature geared machine heads to keep you in tune longer and Graph Tech NuBone XB bridge saddles to increase projection and bass response. Aquila Super Nylgut strings are fitted to produce a fuller, louder and more balanced sound.
Complete with carry bag, the Mahalo Rainbow Series represents outstanding value for money.

// === GLOBAL NAV BEHAVIOR FOR MARICH MUSIC === // --- DROPDOWN ON HOVER (DESKTOP ONLY) --- document.addEventListener('DOMContentLoaded', function () { const dropdowns = document.querySelectorAll('.dropdown'); dropdowns.forEach(drop => { drop.addEventListener('mouseenter', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'block'; }); drop.addEventListener('mouseleave', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'none'; }); }); }); // --- TOGGLE CUSTOM NAV ON MOBILE --- function toggleMobileNav() { const nav = document.querySelector('.menubg'); if (!nav) return; const isVisible = window.getComputedStyle(nav).display !== 'none'; nav.style.display = isVisible ? 'none' : 'flex'; }