Color Highlight
🎨 Lightweight Color Highlight colorizer for Sublime Text
Details
Installs
- Total 308K
- Win 228K
- Mac 44K
- Linux 36K
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 8 | 19 | 27 | 28 | 26 | 18 | 26 | 22 | 15 | 29 | 25 | 24 | 37 | 11 | 18 | 27 | 17 | 34 | 26 | 26 | 13 | 12 | 19 | 21 | 0 | 0 | 0 | 2 | 20 | 21 | 28 | 10 | 19 | 41 | 24 | 20 | 14 | 0 | 0 | 36 | 53 | 19 | 18 | 28 | 47 | 25 |
Mac | 4 | 6 | 2 | 7 | 3 | 3 | 6 | 3 | 4 | 5 | 3 | 7 | 8 | 3 | 0 | 2 | 6 | 5 | 11 | 4 | 4 | 1 | 5 | 2 | 0 | 0 | 0 | 2 | 4 | 7 | 6 | 5 | 4 | 10 | 2 | 2 | 7 | 0 | 0 | 3 | 3 | 3 | 6 | 10 | 7 | 6 |
Linux | 1 | 7 | 8 | 6 | 8 | 7 | 4 | 3 | 6 | 7 | 7 | 5 | 7 | 7 | 8 | 8 | 4 | 15 | 9 | 7 | 6 | 4 | 3 | 1 | 0 | 0 | 0 | 0 | 6 | 5 | 10 | 2 | 1 | 11 | 4 | 7 | 8 | 0 | 0 | 8 | 11 | 12 | 10 | 9 | 9 | 2 |
Readme
🎨 Color Highlight
Show color codes (like “#ffffff”, 0xffffff “rgb(255, 255, 255)”, “white”, hsl(0, 0%, 100%), etc.) with their real color as the background and/or gutter icons.
Installation
- Recommended - Using Sublime Package Control
- Ctrl+Shift+P then select
Package Control: Install Package
- install
Color Highlight
- Ctrl+Shift+P then select
- Alternatively, download the package from GitHub into your
Packages
folder and make sure to rename the directory to “Color Highlight”.
Usage
Supported color representations are:
Named colors in the form of CSS3 color names e.g.
green
,black
and many others are also supported.Hexademical in the form of
#RGB
,#RGBA
,#RRGGBB
or#RRGGBBAA
(you can use both upper and lower case letters)Hexadecimal numbers with prefix 0x in the form of
0xRRGGBB
or0xRRGGBBAA
RBG or RGBA value in the form of
rgb(red, green, blue)
orrgba(red, green, blue, alpha)
with decimal channel valuesHSL or HSLA value in the form of
hsl(hue, sat%, lum%)
orhsla(hue, sat%, lum%, alpha)
HSV or HSVA value in the form of
hsv(hue, sat%, val%)
orhsva(hue, sat%, val%, alpha)
HWB value in the form of
hwb(hue, white%, black%)
orhwb(hue, white%, black%, alpha)
CIELAB (Lab) value in the form of
lab(lum, a, b)
orlab(lum, a, b, alpha)
Cylindrical CIELAB (LCH) in the form of
lch(hue, chroma, lum)
orlch(hue, chroma, lum, alpha)
ANSI escape sequences: Âľ bit (8-color), 8-bit (256-color), 24-bit (true color) in the form of
\033[3Xm
,\033[4Xm
,\033[38;5;IIIm
or\033[38;2;RRR,GGG,BBBm
. Escape part accepting “^[
[”, “\033”, “\x1b[”, “\u001b[” and “\e[”
Those will be shown with colored background and gutter icons when they're found in your documents.
Configuration
You can disable live highlight directly from the command palette:
Color Highlight: Disable Color Highlight
Open settings using the command palette:
Preferences: Color Highlight Settings - User
Gutter icons can be switched among three flavors (or disabled) by using the
gutter_icon
setting:- “circle” - Gutter icon with the color in a circle
- “square” - Gutter icon with the color in a square
- “fill” - Fill whole gutter with color
"user": {
"gutter_icon": "fill"
}
Highlighting the value region in the color can be enabled or disabled by using the
highlight_values
setting.Enabling/disabling coloring of different types of values can be configured.
License
Copyright © 2018 German Mendez Bravo (Kronuz). All rights reserved.
MIT license
This plugin was initially a fork of https://github.com/Monnoroch/ColorHighlighter