Created
May 14, 2016 17:25
-
-
Save insidegui/24e4ebaeee8a13e101c93bb38faacf23 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DarkWindow.swift | |
| // | |
| // Created by Guilherme Rambo on 14/05/16. | |
| // Copyright © 2016 Guilherme Rambo. All rights reserved. | |
| // | |
| import Cocoa | |
| class DarkWindow: NSWindow { | |
| override var effectiveAppearance: NSAppearance { | |
| return NSAppearance(named: NSAppearanceNameVibrantDark)! | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment