Redragon K762 TERRAFLARE PRO RGB Wireless Gasket Gaming Keyboard - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

Redragon K762 TERRAFLARE PRO RGB Wireless Gasket Gaming Keyboard

SKU: RD-K762RGB-PRO
R 1 039.56
Available on Backorder

Tri-mode wireless freedom | Premium gasket-mount construction | Full-size mechanical performance | Dynamic RGB illumination

This item is on backorder — new stock is expected around 26 Aug 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

Tri-mode wireless freedom | Premium gasket-mount construction | Full-size mechanical performance | Dynamic RGB illumination

Quick Specs

  • Dominate every session with full-size mechanical switches engineered for precise, responsive keystrokes.
  • Connect your way with tri-mode wireless — Bluetooth, 2.4G, and wired — for total setup flexibility.
  • Immerse yourself in dynamic RGB backlighting with per-key illumination across the entire keyboard.
  • Experience a premium gasket-mounted layout that absorbs impact and delivers a satisfyingly cushioned typing feel.
  • Game and create without limits thanks to wireless freedom backed by an 18-month warranty.

Command the Battlefield with the Redragon K762 TERRAFLARE PRO

The Redragon K762 TERRAFLARE PRO RGB Wireless Gasket Gaming Keyboard is built for the discerning South African gamer who refuses to compromise between performance, comfort, and freedom. A full-size mechanical keyboard with tri-mode connectivity and a gasket-mounted construction, the TERRAFLARE PRO delivers a premium gaming experience that keeps you locked in — whether you're deep in a ranked match or grinding through a marathon session.

Mechanical Precision, Built to Win

Every keystroke on the TERRAFLARE PRO is powered by mechanical switches engineered for accuracy and responsiveness. Whether you're executing split-second commands or typing at speed, the tactile feedback of a full mechanical switch gives you the confidence to act without hesitation. The full-size layout ensures every key you need is exactly where you expect it — numpad included — so nothing stands between you and your best performance.

Cut the Cable Without Cutting Performance

Tired of a tangle of cables dragging down your battlestation? The K762's tri-mode connectivity lets you switch seamlessly between wired USB, 2.4G wireless, and Bluetooth, giving you the flexibility to game at your desk, present from the couch, or connect to multiple devices without swapping cables. Whatever your setup demands, the TERRAFLARE PRO keeps pace.

Gasket Mount and RGB — Form Meets Function

The gasket-mounted construction isolates the keyboard plate from the outer case, resulting in a softer, more cushioned keystroke feel that reduces fatigue during extended sessions. Paired with dynamic per-key RGB backlighting, the TERRAFLARE PRO doesn't just perform — it looks the part. Customise your lighting to match your setup and let every keystroke shine with vivid, full-spectrum colour.

Features

  • Full-size mechanical keyboard with dedicated numpad and complete key layout.
  • Tri-mode connectivity: wired USB, 2.4G wireless, and Bluetooth for versatile multi-device use.
  • Gasket-mounted construction for a cushioned, impact-absorbing keystroke feel and reduced typing fatigue.
  • Dynamic per-key RGB backlighting with full-spectrum colour customisation.
  • Mechanical switches for precise, tactile, and responsive key actuation.
  • Wireless freedom without sacrificing gaming-grade performance.
  • 18-month warranty for peace of mind.

Specifications

  • Keyboard Size: Full-size
  • Switch Type: Mechanical
  • Connection: Tri-mode
  • Backlighting: RGB
  • Layout: Gasket
  • Colour: Black
  • Warranty: 18 months
  • Product Dimensions: 44.6 x 14.3 x 4 cm
  • Product Weight: 1060g

What's in the Box

  • Redragon K762 TERRAFLARE PRO RGB Wireless Gasket Gaming Keyboard x1
  • Nano receiver x1
  • User manual x1
  • Type C cable x1
  • Switch & keycap puller x1

Why Redragon

Redragon is dedicated to empowering gamers with high-performance, reliable peripherals that deliver exceptional value. From mechanical keyboards to precision mice, Redragon gear is trusted by gamers across South Africa who demand competitive-grade performance without the premium price tag. The TERRAFLARE PRO is a testament to that commitment.

Brand -
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty -
0.0
0 reviews
Login to Review

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

Related Products

Asus TUF Gaming K3 Gen II Gaming Keyboard Hatsune Miku Edition
ASUS

Asus TUF Gaming K3 Gen II Gaming Keyboard Hatsune Miku Edition

R 2 700.69

Only 2 left - order soon!

Keychron Q1H-P1 QMK Wireless Custom Keyboard - White
Keychron

Keychron Q1H-P1 QMK Wireless Custom Keyboard - White

R 4 984.74

Out of 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!