Teak Baritone Ukulele

Model: KA-TEAK-B

$139 $109

Sleek and attractive, our Teak Ukulele Series is an addition to our more affordable ukulele lines. Teak is a tropical hardwood that has a very soft brown color with tight, straight grain patterns and striping. It is known to be water resistant and durable, which makes it a great choice for any adventuring musician. The natural stain of the wood gives this instrument an organic & fresh-cut feel, right at home in the outdoors.

Bag and Case Information

Fits ALL Kala BARITONE bags and cases

Specs
Size: Baritone
Top: Teak
Back & Sides: Teak
Binding: N/A
Neck: Meranti
Finish: Satin
Fingerboard: Indonesian Nandu
Headstock: Standard
Nut & Saddle: Graph Tech Nubone
Tuners: Chrome Open Gear
Truss Rod: Yes
Strings: Aquila Super Nylgut®
Electronics: N/A
Strap Button: Chrome
Measurements

Scale Length: 20.1875 inches, Overall Instrument Length: 30.375 inches, Body Length: 14.0 inches, Number of Frets: 18, Width at Upper Bout: 7.75 inches, Width at Lower Bout: 10.4375 inches, Width at Waist: 6.625 inches, Body Depth: 3.1875 inches, Fingerboard Width at Nut: 1.5 inches, Fingerboard width at neck/body joint: 1.8125 inches

5.0
Rated 5.0 out of 5 stars
Based on 8 reviews
Total 5 star reviews: 8 Total 4 star reviews: 0 Total 3 star reviews: 0 Total 2 star reviews: 0 Total 1 star reviews: 0
100%would recommend this product
Slide 1 selected
8 reviews
  • JD
    Joshua D.
    Verified Reviewer
    I recommend this product
    Rated 5 out of 5 stars
    5 months ago
    Love it!!!

    I got a good deal on this Ukulele from an online music retailer. I purchased it knowing it was one of TWO Ukuleles that had survived several months of research. It did not and does not disappoint. Clear as a bell, lightly brighter sound, still warm with depth. It fits my hands and frame better as I am a large man and it greatly increased the ease with which I play. What I did was use baritone gCEA strings on it so I have a reentrant tuned baritone. It did not need any adjusting of the truss rod or nut, the C string does not bind in the nut so no plinking while tuning. I am impressed, VERY impressed.

  • I
    Izzy
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    14 hours ago
    Fabulous Uke

    This is my first baritone but it sounds absolutely beautiful, looks great, it even smells good! My husband plays a dreadnaught guitar and likes it for just noodling around on the couch too!

  • HW
    Howard W.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    3 weeks ago
    Baritone Ukulele

    This is an excellent instrument which serves as a nice acoustic compliment to my U-Bass. I tend to alternate between instruments, perhaps still relying on the U=Bass a bit more frequently.

  • JS
    Jacqueline S.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    6 months ago
    What a beauty!!!!!

    Love love love my new Teak Baritone uke!! Great sound... beautiful finish.. accidentally ordered 2... gifted one to a string-addicted coworker.... he is in love with his to... his first uke... probably not his last!!!

  • TF
    Tamar F.
    Verified Buyer
    I recommend this product
    Rated 5 out of 5 stars
    2 years ago
    A beautiful instrument!

    We couldn’t be happier with it. It has a beautiful tone. My child loves it!

''
// Preorder Property Handler (function() { function initPreorderProperty() { // Check if this is a preorder product if (!window.isPreorderProduct) { return; } console.log('✅ Preorder product detected'); // Add property to form submissions function addPreorderToForm() { const addToCartButtons = document.querySelectorAll( '[name="add"], ' + 'button[type="submit"][name="add"], ' + '.product-form__submit, ' + '[data-add-to-cart], ' + 'button.add-to-cart, ' + 'button[name="add"]' ); addToCartButtons.forEach(function(button) { button.addEventListener('click', function(e) { const form = button.closest('form'); if (form && form.action && form.action.includes('/cart/add')) { let preorderInput = form.querySelector('input[name="properties[_preorder]"]'); if (!preorderInput) { preorderInput = document.createElement('input'); preorderInput.type = 'hidden'; preorderInput.name = 'properties[_preorder]'; preorderInput.value = 'true'; form.appendChild(preorderInput); console.log('✅ Added _preorder hidden input'); } } }); }); } // Intercept AJAX cart adds function interceptCartAjax() { const originalFetch = window.fetch; window.fetch = function(...args) { const [url, config] = args; if (url && (url.includes('/cart/add.js') || url.includes('/cart/add'))) { if (config && config.body) { try { // Handle JSON body if (typeof config.body === 'string') { const data = JSON.parse(config.body); if (!data.properties) { data.properties = {}; } if (!data.properties._preorder) { data.properties._preorder = 'true'; console.log('✅ Added _preorder to AJAX request'); } config.body = JSON.stringify(data); } // Handle FormData else if (config.body instanceof FormData) { if (!config.body.has('properties[_preorder]')) { config.body.append('properties[_preorder]', 'true'); console.log('✅ Added _preorder to FormData'); } } } catch (e) { console.error('Error modifying cart request:', e); } } } return originalFetch.apply(this, args); }; } // Initialize when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', function() { addPreorderToForm(); interceptCartAjax(); }); } else { addPreorderToForm(); interceptCartAjax(); } } // Initialize initPreorderProperty(); })();