Keychron Double Shot KSA PBT Keycap Set - Dark Grey/White Smoke - Keychron | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Keychron

Keychron Double Shot KSA PBT Keycap Set - Dark Grey/White Smoke

SKU: PBT-46
R 699.00
In Stock

Quick Specs

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

Frequently Bought Together

Quick Specs

  • Crafted from durable double-shot PBT for longevity.
  • Features a comfortable KSA profile for efficient typing.
  • Compatible with MX-style stems on Keychron keyboards.
  • Boasts a stylish dark grey and white smoke colour scheme.
  • Offers an ANSI layout for broad compatibility.

Upgrade Your Keychron Keyboard

Enhance your Keychron keyboard with the Keychron KSA Double Shot PBT Keycaps. Designed for enthusiasts who demand style and performance, these keycaps transform your typing experience with a premium feel.

Durable Double Shot PBT Keycaps for Longevity

Constructed from high-quality, double shot PBT material, these keycaps are built to last. The legends resist fading, even with heavy use, thanks to the double-shot moulding process. Enjoy a satisfying tactile feel and a premium look that complements any setup.

Comfortable KSA Profile Keycaps

The KSA profile offers a comfortable and familiar typing experience, redesigning the classic SA profile to reduce finger fatigue and improve typing accuracy. Ideal for long typing sessions, these Keychron keycaps enhance overall comfort.

Stylish Keychron Keycaps in Dark Grey and White Smoke

The dark grey and white smoke colour scheme adds elegance to your Keychron keyboard. These neutral tones blend seamlessly, making it a versatile choice for any setup. Gamers, programmers, and writers will appreciate the enhanced typing experience.

Broad Compatibility with Keychron Keyboards

Designed with an ANSI layout and MX-style stems, these double shot PBT keycaps are compatible with a wide range of Keychron mechanical keyboards. Effortlessly install for a refreshed aesthetic and enhanced typing feel.

FEATURES:

  • Long-lasting durability with double shot PBT keycaps.
  • Comfortable typing with the sculpted KSA profile.
  • Fade-resistant legends thanks to double-shot moulding.
  • Stylish colour scheme to customise your Keychron keyboard.
  • Broad compatibility with ANSI layout and MX stems.

SPECIFICATIONS:

  • Material: Double-shot PBT
  • Thickness: 1.6 mm
  • Stem: MX style
  • Legend: Backlight does not shine through
  • Profile: KSA profile (Keychron redesigned SA profile)
  • Compatible layout: ANSI layout
  • Compatible keyboards:
    • Keychron Q series (excluding Q8, Q9 Plus, Q10, Q11, Q60)
    • Q Pro, Q Max series (excluding Q8 Pro, Q8 Max, Q10 Pro, Q10 Max, Q11 Pro, Q13 Max, Q14 Max, Q14 Pro, Q15 Max, Q60 Max)
    • Q HE series, V, V Max series (excluding V8, V8 Max, V10, V10 Max), 81 Pro
    • Lemokey L1, L3, L4, P1, P1 Pro, P1 HE
    • K2, K2 Pro, K2 Max, K2 HE, K4, K4 Pro, K6, K6 Pro, K8, K8 Pro, K8 Max, K10, K10 Pro, K10 Max, K12, K12 Pro, K14, K14 Pro
    • C1, C1 Pro, C2, and C2 Pro.
    • (40%, 60%, 65%, 70%, 75%, 80%, 96%, 100% layout keyboards).
    • Note: This keycap set does not include Menu, Scroll Lock, Pause Break keycaps and the keyboard.
  • Colour: Dark Grey/White Smoke

WHAT'S IN THE BOX:

  • Keychron Double Shot KSA PBT Keycap Set - Dark Grey/White Smoke x1
Brand Keychron
Colour Dark Grey, Silver
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 Red Gateron Phantom Switches 110 pcs
Keychron

Keychron Red Gateron Phantom Switches 110 pcs

R 399.00

In Stock

Keychron Cherry Profile Dolch Red PBT Full Keycap Set
Keychron

Keychron Cherry Profile Dolch Red PBT Full Keycap Set

R 649.00

In Stock

Keychron CHERRY MX2A Black RGB Switch Set
Keychron

Keychron CHERRY MX2A Black RGB Switch Set

R 949.00

Out of Stock

Keychron Coiled Aviator White Cable
Keychron

Keychron Coiled Aviator White Cable

R 349.00

Only 5 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!