mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
15 lines
377 B
Swift
15 lines
377 B
Swift
//
|
|
// NSColor.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/2/16.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import CoreGraphics
|
|
|
|
extension CGColor {
|
|
static let albumBorderColorLight = CGColor.init(srgbRed: 0, green: 0, blue: 0, alpha: 0.15)
|
|
static let albumBorderColorDark = CGColor.init(srgbRed: 255, green: 255, blue: 255, alpha: 0.15)
|
|
}
|