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
/// Additional colors accessibility metrics utilities | |
import Cocoa | |
import simd | |
extension NSColor { | |
/// Returns in an ordered array the following components from this color, in the sRGB color space: | |
/// - red | |
/// - green |
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
#!/usr/bin/env bash | |
shopt -s extglob | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
# Function definitions | |
check_prerequisites() { |
NewerOlder