mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-15 00:06:09 +03:00
9 lines
190 B
Swift
9 lines
190 B
Swift
import Cocoa
|
|
|
|
extension NSAppearance {
|
|
/// Returns true if the appearance is some kind of dark.
|
|
var isDark: Bool {
|
|
return name.rawValue.lowercased().contains("dark")
|
|
}
|
|
}
|