Skip to content

onmyway133/XcodeColorSense

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XcodeColorSense

An Xcode plugin that makes working with color easier. Inspired by ColorSense-for-Xcode with extra care for Hex color

Features

  • Show color preview as you type or select
  • Works for UIColor, NSColor

Matchers

  • Hex Matcher
let _ = NSColor.hex("#FFAABB")
let _ = UIColor(hex: 0xFFAABB)
  • RGBA Matcher
let _ = UIColor(red: 1.0f, green: 240/255, blue: 0.8, alpha: 0.95)
  • Preset Matcher
let _ = NSColor.redColor()

Extensible

Add your own color handler by conforming to Matcher

protocol Matcher {
  func check(line: String, selectedText: String) -> (color: NSColor, range: NSRange)?
}

Installation

Manually

  • Build the project. The plugin will be in ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins
  • Restart Xcode

Alcatraz

Licence

This project is released under the MIT license. See LICENSE.md.

About

🎈 An Xcode plugin that makes working with color easier

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages