Skip to content

Instantly share code, notes, and snippets.

View marioaguzman's full-sized avatar
🤓

Mario Guzman marioaguzman

🤓
View GitHub Profile
@marioaguzman
marioaguzman / Custom
Last active February 1, 2026 13:51
Creating NSTableView Gradient Header
import AppKit
/// Custom drawing of a Table's Header Row by darkening the background to a light gray rather than just being white.
class GradientTableHeaderCell: NSTableHeaderCell {
/// Light Mode Gradient
var backgroundFillGradient: NSGradient! {
NSGradient(colorsAndLocations:
(NSColor.secondarySystemFill.withAlphaComponent(0.55), 0.0), // Bottom
(NSColor.secondarySystemFill.withAlphaComponent(0.075), 1.0) // Top