Redragon K616 FIZZ Pro 61-Key RGB Mechanical Gaming Keyboard – Black (60%, RGB, Wireless/Wired, Hot-Swappable) - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon K616 FIZZ Pro 61-Key RGB Mechanical Gaming Keyboard – Black (60%, RGB, Wireless/Wired, Hot-Swappable)

SKU: RD-K616-RGB
R 539.00 R 699.00
You save R 160.00 (23%)
In Stock
You save R 160.00 (23% off)

The Redragon K616 FIZZ Pro delivers streamlined performance in a stylish 60% form factor, offering a refined mechanical keyboard experience engineered for speed, portability, and personalisation. Designed for gamers, creators, and professionals alike, this compact solution features hot-swappable...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Redragon K616 FIZZ Pro delivers streamlined performance in a stylish 60% form factor, offering a refined mechanical keyboard experience engineered for speed, portability, and personalisation. Designed for gamers, creators, and professionals alike, this compact solution features hot-swappable Red linear switches and N-Key rollover for rapid, uninterrupted input—ideal for fast-paced titles and multi-action commands.

Connect how you play with versatile tri-mode options: ultra-stable 2.4GHz wireless, Bluetooth for multi-device flexibility, or wired USB Type-C for uninterrupted, low-latency performance. Whether you’re gaming from your desktop, switching to a tablet, or working remotely, the FIZZ Pro seamlessly adapts.

Customise your setup with vibrant RGB backlighting and durable double-shot injection keycaps that ensure clear illumination and long-term resilience. The detachable switches and included puller tools enable instant swaps, letting you fine-tune your experience down to the last keystroke.

Weighing just 412g and crafted for portability, this ultra-slim keyboard is ideal for tight desk spaces, travel-ready gaming rigs, and streamlined workstations.

FEATURES:

  • Switch between 2.4GHz wireless, Bluetooth, or USB Type-C for multi-platform use
  • Linear, fast, and quiet switches that support custom replacements without soldering
  • Compact 61-Key layout saves desk space while maintaining essential functionality
  • Full n-key rollover, every key press is registered, even during complex key combos
  • RGB customisable lighting modes for immersive play and productivity
  • Double-shot injection moulded for enhanced wear resistance and clear LED diffusion
  • Multi-device Compatibility connects to PCs, smartphones, and tablets for a seamless workflow

SPECIFICATIONS:

  • Keys: 61
  • Switch Type: Red Mechanical (Hot-swappable)
  • Connectivity: 2.4GHz Wireless, Bluetooth, USB Type-C (Wired)
  • Backlighting: RGB
  • Compatibility: Windows XP / Vista / 7 / 8 / 10
  • Dimensions: 29.6 x 10.6 x 3.4 cm
  • Weight: 412g
  • Colourway: Black

WHAT'S IN THE BOX:

  • Redragon K616 FIZZ Pro 61-Key RGB Mechanical Gaming Keyboard – Black ×1
  • USB Type-C Cable ×1
  • Keycap Puller ×1
  • Switch Puller ×1
  • User Manual ×1
Brand Redragon
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 18 Months
0.0
0 reviews
Login to Review

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

Related Products

-23%
REDRAGON MECHANICAL POLLUX PRO WIRELESS BT|RF GAMING KEYBOARD
Redragon

REDRAGON MECHANICAL POLLUX PRO WIRELESS BT|RF GAMING KEYBOARD

R 539.00 R 699.00

Save R 160.00

Out of Stock

-21%
Redragon UCAL K673 PRO Mechanical Wireless Gaming Keyboard - Black
Redragon

Redragon UCAL K673 PRO Mechanical Wireless Gaming Keyboard - Black

R 709.00 R 899.00

Save R 190.00

Out of Stock

-16%
Redragon K733 COVE RGB Wireless Mechanical Numpad
Redragon

Redragon K733 COVE RGB Wireless Mechanical Numpad

R 359.00 R 429.00

Save R 70.00

In Stock

-30%
Redragon K521 RGB NETHERBANE 104-Key Membrane Gaming Keyboard
Redragon

Redragon K521 RGB NETHERBANE 104-Key Membrane Gaming Keyboard

R 139.00 R 199.00

Save R 60.00

In Stock

// 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!