Antec CX300 ATX ARGB Gaming Chassis - White - Antec | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Antec

Antec CX300 ATX ARGB Gaming Chassis - White

SKU: CX300 ARGB W
R 1 009.00
In Stock

The Antec CX300 ATX ARGB Gaming Chassis is engineered for gamers and PC builders who demand both aesthetics and functionality. Featuring a panoramic tempered glass design, it provides a clear view of your components, showcasing your high-performance build with style. The vertical airflow system,...

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

Frequently Bought Together

The Antec CX300 ATX ARGB Gaming Chassis is engineered for gamers and PC builders who demand both aesthetics and functionality. Featuring a panoramic tempered glass design, it provides a clear view of your components, showcasing your high-performance build with style. The vertical airflow system, supporting up to 10 fans, ensures superior cooling by optimising airflow from bottom to top, keeping your system running efficiently even under intense gaming conditions.

This mid-tower case is designed with user convenience in mind, featuring a flip-out side panel secured by a single screw, allowing effortless access to internal components. Equipped with four pre-installed ARGB fans—three 120mm reverse blade fans on the side and a single 120mm fan at the rear—it delivers enhanced airflow and vibrant illumination to elevate your setup.

Supporting a 360mm radiator on top and a 240mm radiator on the right side, the CX300 provides robust cooling solutions for high-performance gaming rigs. The magnetic dust filters on the top and bottom prevent dust build-up, ensuring long-lasting performance. Its 7-slot PCIe design offers extensive GPU compatibility, making it an ideal choice for powerful gaming configurations. Elevate your gaming experience with the Antec CX300 ARGB Gaming Chassis—where performance meets cutting-edge design.

FEATURES:

  • Tempered glass panels for a premium aesthetic
  • Vertical airflow system, up to 10 fans for optimal cooling
  • 4 x 120mm reverse blade RGB fans included
  • 360mm top radiator and 240mm side radiator
  • Top and bottom magnetic dust filters
  • 7 PCIe slots for maximum GPU compatibility

SPECIFICATIONS:

  • Motherboard Support: ATX, Micro-ATX, ITX
  • Form Factor: Mid Tower
  • Case Material: Steel + Tempered Glass
  • Side & Front Panel: 4mm Tempered Glass
  • I/O Ports: Power, LED Control, USB 2.0 x 2, USB 3.0 x 1, MIC/HD-AUDIO
  • Clearance:
    • CPU Cooler Max Height: ≤ 170mm
    • CPU Max Length: ≤ 420mm
    • Power Supply Max Length: (Includes cable) ≤ 245mm
    • Cable Routing Space: ≤ 27mm
  • Dust Filter: Top/Bottom
  • Fan Support:
    • Top: 3 x 120mm/ 2 x 140mm
    • Side: 3 x 120mm
    • Power Supply Shroud: 1 x 120mm
    • Bottom: 1 x 120mm
    • Rear: 1 x 120mm
  • Radiator Support:
    • Top: 120/240/360mm (When installing water cooler on the top, if there is interference, the memory height is limited to 45mm)
    • Side: 120mm/240mm
  • Expansion Slots:
    • Standard: 7
  • Drive Bays:
    • 3.5″/2.5″: 2/1
    • 2.5″: 2
  • Dimensions:
    • Case Dimensions: 45 x 21.9 x 45.6 cm
    • Box Dimensions: 49.5 x 28 x 51.5 cm
    • Net Weight: 6550g
    • Gross Weight: 8060g
  • Accessories:
    • Included Fans: 3 x 120mm ARGB reverse fans on right side + 1 x 120mm ARGB fan in rear

WHAT'S IN THE BOX:

  • Antec CX300 ATX ARGB Gaming Chassis - White x1
Brand Antec
Colour White
Form Factor ATX, ITX, Micro-ATX
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

DeepCool CH160 PLUS Micro-ATX Chassis - White
DEEPCOOL

DeepCool CH160 PLUS Micro-ATX Chassis - White

R 969.00

Only 4 left - order soon!

FSP M340 ARGB ATX Gaming Chassis - Black
FSP

FSP M340 ARGB ATX Gaming Chassis - Black

R 1 299.00

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!