All Projects β†’ onmyway133 β†’ Xcodecolorsense

onmyway133 / Xcodecolorsense

Licence: mit
🎈 An Xcode plugin that makes working with color easier

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Xcodecolorsense

Color.js
Extract colors from an image (0.75 KB) 🎨
Stars: ✭ 42 (-46.84%)
Mutual labels:  palette, rgb, color
Farge
🎈Tell the name of hex color
Stars: ✭ 23 (-70.89%)
Mutual labels:  hex, color, rgb
hcv-color
🌈 Color model HCV/HCG is an alternative to HSV and HSL, derived by Munsell color system, usable for Dark and Light themes... 🌈
Stars: ✭ 44 (-44.3%)
Mutual labels:  color, palette, rgb
Colorpicker
A mininal but complete colorpicker desktop app
Stars: ✭ 766 (+869.62%)
Mutual labels:  hex, rgb, color
colorsys.rs
Lib for modifying colors and converting to other spaces
Stars: ✭ 28 (-64.56%)
Mutual labels:  hex, color, rgb
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (+92.41%)
Mutual labels:  xcode, rgb, color
ColorHelper
No description or website provided.
Stars: ✭ 34 (-56.96%)
Mutual labels:  hex, color, rgb
vscode-color
Helper with GUI to generate color codes such as CSS color notations.
Stars: ✭ 88 (+11.39%)
Mutual labels:  hex, palette, rgb
hex-to-css-filter
Easy way to generate colors from HEX to CSS Filters
Stars: ✭ 20 (-74.68%)
Mutual labels:  hex, color, rgb
color
A library of well-tested helper methods for working with colors.
Stars: ✭ 13 (-83.54%)
Mutual labels:  hex, color, rgb
Chartjs Plugin Colorschemes
Predefined color schemes for Chart.js
Stars: ✭ 189 (+139.24%)
Mutual labels:  plugin, palette, color
Colorhighlight
🎨 Lightweight Color Highlight colorizer for Sublime Text
Stars: ✭ 76 (-3.8%)
Mutual labels:  hex, rgb, color
Color
A little library to deal with color conversions
Stars: ✭ 166 (+110.13%)
Mutual labels:  hex, rgb, color
khroma
A collection of functions for manipulating CSS colors, inspired by SASS.
Stars: ✭ 28 (-64.56%)
Mutual labels:  hex, color, rgb
Values.js
πŸ‡ Get the tints and shades of a color
Stars: ✭ 97 (+22.78%)
Mutual labels:  hex, rgb, color
colorsys
🎨 Minimalistic color converter for RGB, HSV, HSL, CMYK, HEX and CSS strings
Stars: ✭ 53 (-32.91%)
Mutual labels:  hex, color, rgb
Culori
A comprehensive color library for JavaScript.
Stars: ✭ 271 (+243.04%)
Mutual labels:  hex, rgb, color
Xcodecolorsense2
πŸ‰ An Xcode source editor extension that shows hex color info
Stars: ✭ 281 (+255.7%)
Mutual labels:  xcode, hex, color
Iro.js
🎨 Modular color picker widget for JavaScript, with support for a bunch of color formats
Stars: ✭ 796 (+907.59%)
Mutual labels:  plugin, color
Przm
🎨 A simple, yet feature rich color picker and manipulator
Stars: ✭ 17 (-78.48%)
Mutual labels:  rgb, color

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].