colorconv
colorconv
Command line CSS color converter
Building
shards build --release
Usage
Just give colorconv a css string as an argument and colorconv will parse it and output all currently supported color formats (excluding short hex formats). You can specify options to output specific color formats.
Usage: colorconv [options] color ...
-x, --hex Format as hex
-X, --hexa Format as hex+alpha
-r, --rgb Format as rgb
-R, --rgba Format as rgb+alpha
-h, --hsl Format as hsl
-H, --hsla Format as hsl+alpha
--help Print usage information
Examples
Print all formats for a given rgba color
$ colorconv 'rgba(24, 90, 220, .9)'
input: rgba(24, 90, 220, .9)
hex: #185adc
hexa: #185adce5
rgb: rgb(24, 90, 220)
rgba: rgba(24, 90, 220, 0.9)
hsl: hsl(219.796, 80.328%, 47.843%)
hsla: hsla(219.796, 80.328%, 47.843%, 0.9)
Print the rgb format for a given hex color
$ colorconv -r '#fa4616'
rgb(250, 70, 22)
Print the hsl format for a given named color
$ colorconv -h 'aliceblue'
hsl(208, 100%, 97.059%)
Repository
colorconv
Owner
Statistic
- 0
- 0
- 0
- 0
- 0
- over 2 years ago
- June 8, 2022
License
MIT License
Links
Synced at
Fri, 22 Nov 2024 13:33:23 GMT
Languages