Skip to content

Instantly share code, notes, and snippets.

@insidegui
Created May 14, 2016 17:25
Show Gist options
  • Select an option

  • Save insidegui/24e4ebaeee8a13e101c93bb38faacf23 to your computer and use it in GitHub Desktop.

Select an option

Save insidegui/24e4ebaeee8a13e101c93bb38faacf23 to your computer and use it in GitHub Desktop.
//
// 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