Corsair K55 CORE TKL RGB Gaming Keyboard | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair K55 CORE TKL RGB Gaming Keyboard

SKU: CH-9216065-NA
R 1 039.56
Available on Backorder

Compact TKL layout for extra desk space | Vivid customisable RGB lighting | Rapid 1000Hz responsiveness | Spill-resistant, built to last | iCUE-powered personalisation

This item is on backorder — new stock is expected around 28 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Compact TKL layout for extra desk space | Vivid customisable RGB lighting | Rapid 1000Hz responsiveness | Spill-resistant, built to last | iCUE-powered personalisation

Quick Specs

  • Dominate every match with a tenkeyless design that frees up desk space for wider, low-sensitivity mouse swipes.
  • Experience vivid RGB lighting that lets you personalise your battle station.
  • React faster with a 1000Hz polling rate for near-instant input response.
  • Customise your setup effortlessly through Corsair iCUE software.
  • Type and game with confidence thanks to durable rubber dome switches built for accuracy.

Built for players who need more room to manoeuvre

Tired of your mouse hitting the numpad mid-swipe? The Corsair K55 CORE TKL RGB Gaming Keyboard cuts the numpad entirely, giving you a tenkeyless layout that frees up valuable desk space for wide, low-sensitivity mouse movements. It's a smart choice for the competitive South African gamer who wants a compact, no-nonsense footprint without sacrificing a full set of gaming-ready keys. Add in a spill-resistant build, and you've got a keyboard designed to handle the intensity of long gaming sessions without missing a beat.

Precision that keeps pace with your reflexes

Every millisecond counts in competitive play, and the K55 CORE TKL is engineered to keep up. A 1000Hz polling rate ensures your keystrokes register almost instantly, while 12-key rollover (12KRO) means multiple simultaneous key presses come through accurately even in the heat of a firefight. Paired with responsive rubber dome switches, this gaming keyboard delivers the consistent, reliable input you need to secure the win.

Illuminate your setup, your way

Your gaming rig should look as good as it performs. Vivid RGB backlighting lets you bring colour and personality to your desk, fully customisable through Corsair iCUE software. Beyond lighting, iCUE gives you control over onboard memory profiles, so your preferred setup travels with you rather than being tied to a single PC.

Built to go the distance

Dedicated hotkeys for media, volume, and Windows key lock put essential controls at your fingertips without breaking your flow, while a tangle-free rubber cable and USB 2.0 Type-A connection keep your setup tidy and dependable. Backed by a 2-year warranty, the K55 CORE TKL RGB Gaming Keyboard is a wired gaming keyboard built to handle whatever your next session throws at it.

Features

  • Tenkeyless (TKL) layout frees up desk space for wider mouse swipes
  • Spill-resistant design guards against everyday accidents
  • Vibrant RGB backlighting customisable via Corsair iCUE software
  • 1000Hz polling rate for rapid, responsive keystrokes
  • 12-key rollover (12KRO) ensures accurate registration during fast-paced action
  • Dedicated hotkeys for media, volume, and Windows key lock
  • Onboard memory stores your settings for on-the-go use
  • Tangle-free rubber cable with USB 2.0 Type-A connectivity

Specifications

  • Keyboard CUE Software: Supported in iCUE
  • Media and Volume Controls: Yes
  • Keyboard Report Rate: 1000Hz
  • Keyboard Colour: RGB
  • Onboard Memory: Yes
  • Keyboard Type Size: K55
  • Size Full TKL: Extended
  • Adjustable Height: Yes
  • Wired Connectivity: USB 2.0 Type-A
  • Keyboard Connectivity: Wired
  • Keyboard Cable Material: Tangle-free rubber
  • WIN Lock: Dedicated Hotkey
  • Media Keys: Dedicated Hotkeys
  • Key Rollover: 12-Key Selective (12KRO)
  • Keyboard Matrix: 87 Keys
  • Key Switches: Rubber Dome
  • Keyboard Layout: NA (North America)
  • Keyboard Warranty: 2 Year
  • Keyboard Compatibility:
    • PC with a USB 2.0 Type-A port
    • Windows® 10 or macOS® 10.15
    • Internet connection for iCUE software download
  • Weight: 617g

What's in the Box

  • 1 x Corsair K55 CORE TKL RGB Gaming Keyboard

Why Corsair

Corsair has spent decades engineering gear trusted by competitive gamers worldwide, and the K55 CORE TKL RGB Gaming Keyboard carries that same commitment to reliable performance. From responsive switches to iCUE-powered customisation, it's built to give South African gamers dependable, precision-driven equipment they can count on.

0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!