Keychron Low Profile Dye-Sub PBT LSA Full Set Keycap Set – Hacker Edition (133 Keys, PBT, Low Profile) - Keychron | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Keychron

Keychron Low Profile Dye-Sub PBT LSA Full Set Keycap Set – Hacker Edition (133 Keys, PBT, Low Profile)

SKU: PBT-62
R 699.00
In Stock

Engineered for discerning mechanical keyboard users, the Keychron Low Profile Dye-Sub PBT LSA Full Set Keycap Set – Hacker Edition delivers a premium typing experience with long-lasting durability and precision. Constructed from high-quality PBT material using a five-sided dye-sublimation...

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

Frequently Bought Together

Engineered for discerning mechanical keyboard users, the Keychron Low Profile Dye-Sub PBT LSA Full Set Keycap Set – Hacker Edition delivers a premium typing experience with long-lasting durability and precision. Constructed from high-quality PBT material using a five-sided dye-sublimation process, each keycap features crisp, fade-resistant legends that remain sharp for years to come—ensuring a consistent, shine-free finish that withstands daily wear and extended use.

This full set of 133 keys is purpose-built for compatibility across a wide range of ANSI low-profile layouts including 60%, 65%, 75%, 80%, 96%, and 100%. Designed with the LSA (Low Profile Spherical Angled) profile, each keycap provides ergonomic curvature and a uniform typing surface for enhanced finger alignment and responsive feedback.

The Hacker Edition features a bold and modern aesthetic, tailored for users who demand both visual distinction and high-performance functionality. With no backlight pass-through, the legends retain a classic, opaque appearance, complementing minimalist setups and matte-finish keyboards alike.

MX-style stem support ensures seamless installation on compatible switches, making this set an ideal upgrade for Keychron’s latest-generation low-profile mechanical keyboards. Whether you're customising your workspace, replacing worn keys, or elevating the tactile feel of your device, this keycap set offers professional-grade enhancement in both form and function.

FEATURES:

  • 133-key full set for ANSI low-profile layouts (60%–100%)
  • Premium PBT construction with dye-sublimated legends
  • Fade-resistant, wear-proof, and shine-free finish
  • LSA profile: Low Profile Spherical Angled design
  • MX-compatible stem for mechanical switch support
  • Exclusive Hacker Edition design
  • No backlight shine-through (non-transparent legends)

SPECIFICATIONS:

  • Material: PBT (Polybutylene Terephthalate)
  • Printing Method: Five-sided dye-sublimation
  • Keycap Profile: LSA (Low Profile Spherical Angled)
  • Legend Characteristics: Non-transparent, dye-sublimated legends
  • Stem Type: MX-style
  • Compatibility:
    • Keychron K1 Version 6, K1 Pro, K1 Max
    • K3 Version 3, K3 Pro, K3 Max
    • K5 Version 2, K5 Pro, K5 Max
    • K7 Pro, K7 Max
    • K9 Pro
    • K11 Pro, K11 Max
    • K13 Pro, K13 Max
    • K15 Pro, K15 Max
    • K17 Pro, K17 Max
    • S1
  • Incompatible With:
    • K1 Versions 1–5, K1 SE
    • K3 (original version)
    • K5, K5 SE
    • K7 (original version)

WHAT'S IN THE BOX:

  • Keychron Low Profile Dye-Sub PBT LSA Full Set Keycap Set – Hacker Edition x1
Brand Keychron
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

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

Related Products

Keychron Double Shot OSA PBT Keycap Full Keycap Set - Purple
Keychron

Keychron Double Shot OSA PBT Keycap Full Keycap Set - Purple

R 649.00

Out of Stock

Keychron Dye-Sub PBT Full Keycap Set - Love
Keychron

Keychron Dye-Sub PBT Full Keycap Set - Love

R 349.00

Only 1 left - order soon!

Keychron Double-Shot PBT OSA Keycap Set - Grey
Keychron

Keychron Double-Shot PBT OSA Keycap Set - Grey

R 699.00

In Stock

Keychron CHERRY MX2A Red RGB Switch Set
Keychron

Keychron CHERRY MX2A Red RGB Switch Set

R 949.00

Only 2 left - order soon!

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