mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
24 lines
640 B
Swift
24 lines
640 B
Swift
//
|
|
// AccountsControlsBackgroundView.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 3/18/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import AppKit
|
|
import RSCore
|
|
|
|
final class AccountsControlsBackgroundView: NSView {
|
|
|
|
private static let lightGrayColor = NSColor.rs_color(withHexString: "f7f7f7")!
|
|
private static let darkGrayColor = NSColor.rs_color(withHexString: "52565a")!
|
|
|
|
override func draw(_ dirtyRect: NSRect) {
|
|
|
|
let color = self.effectiveAppearance.isDarkMode ? AccountsControlsBackgroundView.darkGrayColor : AccountsControlsBackgroundView.lightGrayColor
|
|
color.set()
|
|
dirtyRect.fill()
|
|
}
|
|
}
|