All Projects → majjoha → color-converter

majjoha / color-converter

Licence: other
Command line tool for converting colors from RGB to HEX and vice versa.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to color-converter

cyan
Cyan Color Converter
Stars: ✭ 68 (+300%)
Mutual labels:  converter, rgb
React Color Extractor
A React component which extracts colors from an image
Stars: ✭ 314 (+1747.06%)
Mutual labels:  converter, rgb
vdcd
vdcd - virtual device controller daemon/framework for digitalSTROM
Stars: ✭ 19 (+11.76%)
Mutual labels:  rgb
acer-predator-turbo-and-rgb-keyboard-linux-module
Linux kernel module to support Turbo mode and RGB Keyboard for Acer Predator notebook series
Stars: ✭ 125 (+635.29%)
Mutual labels:  rgb
medium-to-markdown
Converts Medium posts to markdown.
Stars: ✭ 68 (+300%)
Mutual labels:  converter
CTR-tools
Crash Team Racing (PS1) tools - a C# framework by DCxDemo and a set of tools to parse files found in the original kart racing game by Naughty Dog.
Stars: ✭ 93 (+447.06%)
Mutual labels:  converter
bot-whatsapp
Unmaintained - Multipurpose WhatsApp Bot 🤖 using open-wa/wa-automate-nodejs library! ✨
Stars: ✭ 78 (+358.82%)
Mutual labels:  converter
Excel2LaTeX
The Excel add-in for creating LaTeX tables
Stars: ✭ 914 (+5276.47%)
Mutual labels:  converter
ical2json
A simple node package to convert ical data to json
Stars: ✭ 46 (+170.59%)
Mutual labels:  converter
gluon2pytorch
Gluon to PyTorch deep neural network model converter
Stars: ✭ 72 (+323.53%)
Mutual labels:  converter
mdtable2csv
convert tables in .md to .csv
Stars: ✭ 91 (+435.29%)
Mutual labels:  converter
Rates
A currency rate converter App.
Stars: ✭ 13 (-23.53%)
Mutual labels:  converter
go-rainbow
Golang Helper for beautiful CLI Applications
Stars: ✭ 86 (+405.88%)
Mutual labels:  rgb
ColorVectorSpace.jl
Treat colors as if they are n-vectors for the purposes of arithmetic
Stars: ✭ 28 (+64.71%)
Mutual labels:  rgb
ColorTranslator
A JavaScript library, written in TypeScript, to convert among different color models
Stars: ✭ 34 (+100%)
Mutual labels:  rgb
openrgb.nvim
Bring RGB to life in Neovim
Stars: ✭ 39 (+129.41%)
Mutual labels:  rgb
eruption
Realtime RGB LED Driver for Linux
Stars: ✭ 140 (+723.53%)
Mutual labels:  rgb
to-ico
Convert PNG to ICO in memory
Stars: ✭ 115 (+576.47%)
Mutual labels:  converter
video2gif
A batch script for convert video to GIF files by FFmpeg.exe on Windows
Stars: ✭ 48 (+182.35%)
Mutual labels:  converter
Tracker
Even the best of apps have their issues
Stars: ✭ 113 (+564.71%)
Mutual labels:  converter

color-converter

This command line utility simply converts colors from hexadecimal colors to RGB and vice versa. It aims for simplicity, portability and uses bc, cut and other commands as little as possible.

Feel free to contribute to the project in any way or create an issue if you happen to find a bug.

Installation

$ git clone https://github.com/majjoha/color-converter.git
$ cd color-converter && sudo cp color-converter /usr/local/bin/color-converter

Usage

Convert a hexadecimal color to RGB

$ color-converter ff0000
#ff0000 -> rgb(255, 255, 0)
$ color-converter "#c71585"
#c71585 -> rgb(199, 21, 133)

Convert a color in RGB to a hexadecimal value

$ color-converter 255 255 0
rgb(255, 255, 0) -> #ffff00

Change luminosity of a RGB value

$ color-converter 255 255 255 -25
rgb(255, 255, 255) -> rgb(230, 230, 230)
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].