Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard - Black - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard - Black

SKU: RD-K617-RGB
R 369.00 R 459.00
You save R 90.00 (20%)
In Stock
You save R 90.00 (20% off)

Purpose-built for fast-paced competitive gaming, the Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard delivers a no-compromise typing experience in a compact, ultra-lightweight chassis. Designed with FPS enthusiasts in mind, this 61-key mechanical keyboard maximises desktop real estate by...

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

Frequently Bought Together

Purpose-built for fast-paced competitive gaming, the Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard delivers a no-compromise typing experience in a compact, ultra-lightweight chassis. Designed with FPS enthusiasts in mind, this 61-key mechanical keyboard maximises desktop real estate by eliminating excess keys and shifting focus to seamless hand mobility, giving users more space for wide mouse sweeps and precision tracking.

At the heart of the K617 are Redragon’s linear red mechanical switches, offering quiet, smooth keystrokes with soft actuation and zero tactile resistance—ideal for both gaming and fast typing sessions. Hot-swappable switch sockets add flexibility, allowing gamers to experiment with compatible Redragon switch alternatives without soldering, while the switches themselves are rated for 50 million presses, ensuring durability under pressure.

Customisation is central to the FIZZ experience. With up to 20 preset RGB lighting effects and full onboard control of brightness and animation speed, users can personalise their keyboard directly or unlock full functionality via Redragon’s Pro Driver software, which supports macro configuration, key remapping, and per-key RGB tuning.

Connectivity is streamlined with a detachable USB Type-C to USB-A cable for plug-and-play reliability. The keyboard’s no-slip stand and adjustable height ensure optimal ergonomics for extended gaming marathons, while full-key rollover and anti-ghosting capabilities guarantee every command is executed flawlessly.

Whether you're a competitive gamer needing mouse clearance, a streamer seeking desk minimalism, or a user prioritising tactile speed and RGB flair, the Redragon K617 FIZZ stands out as a stylish, high-performance solution.

FEATURES:

  • Ultra-compact 60% mechanical layout with 61 keys
  • Redragon Linear Red switches: quiet, smooth, and hot-swappable
  • Detachable Type-C to USB-A cable for easy portability
  • Full RGB backlighting with 20 preset lighting modes
  • Pro Driver software: custom lighting, macros, and keybinds
  • Full-key anti-ghosting and N-key rollover
  • Mixed white & grey keycap design for a sleek, modern finish
  • Height-adjustable with no-slip base for enhanced stability
  • Optimised for FPS gaming and compact workspaces

SPECIFICATIONS:

  • Layout: US QWERTY, 60% format (61 keys)
  • Switch Type: Redragon Linear Red, hot-swappable
  • Lighting: RGB backlight, 20 preset modes, customisable via software
  • Connection Type: Wired, detachable Type-C to USB-A
  • Keycap Colour: White & Grey mixed tone
  • Software Support: Redragon Pro Driver (macros, RGB, key remapping)
  • Matrix: Full-key rollover with anti-ghosting
  • Durability: 50 million keystroke lifespan
  • Dimensions: 29.21 x 9.9 x 3.56 cm
  • Weight: 430 g

WHAT'S IN THE BOX:

  • Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard - Black x1
  • Detachable USB Type-C Cable x1
  • User Manual x1
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

-21%
REDRAGON MECHANICAL HORUS PRO Wireless Gaming Keyboard
Redragon

REDRAGON MECHANICAL HORUS PRO Wireless Gaming Keyboard

R 749.00 R 949.00

Save R 200.00

Out of Stock

-20%
Redragon K719WGB GALATIN RGB PRO Full sized Wireless Gaming Keyboard - White
Redragon

Redragon K719WGB GALATIN RGB PRO Full sized Wireless Gaming Keyboard - White

R 879.00 R 1 099.00

Save R 220.00

Out of Stock

-21%
Redragon FIZZ Magnetic Plus 60% RGB Gaming Keyboard - Black
Redragon

Redragon FIZZ Magnetic Plus 60% RGB Gaming Keyboard - Black

R 439.00 R 559.00

Save R 120.00

In Stock

-17%
Keychron Q3 HE QMK 80% Wireless Custom Mechanical Keyboard (Nebula Switch) – Carbon Black
Keychron

Keychron Q3 HE QMK 80% Wireless Custom Mechanical Keyboard (Nebula Switch) – Carbon Black

R 4 059.00 R 4 899.00

Save R 840.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!