This plugin shows a color codes preview in an editor's sidebar.
Uncheck/Check View > Show Colors
#fff
#000000
)rgb(0, 0, 0)
, rgb(50%, 0%, 100%)
, rgba(255,255,255, 0.8)
)hsl(0, 100%, 50%)
, hsla(120, 100%, 50%, 0.5)
)red
, blue
)Color.black
, new Color(100, 100, 100)
, new Color(0, 0, 255, 255)
)If "GTK look and feel" is used, an alpha value is not available. So, in that case, this plugin doesn't show the color chooser for new Color(r, g, b, a)
.
You can generate color codes via a code generator(Alt + Ins).
Color...
new Color(r, g, b)
)Tools > Options > Miscellaneous > Color Codes Preview
Default value is ^text/(x-)?(css|less|sass|scss)$
.
If you would like to disable/enable some mime-types, please change the default regex.
This pattern is used when the plugin checks a mime-type.
If you would like to enable xml files, please add |.*xml
. i.e. ^text/(x-)?(css|less|sass|scss|.*xml)$
This option is false
by default. If you would like to resolve Sass and Less variables, please check it.
NOTE: The simplest cases only e.g. $green: #0f0;
This option is false
by default. If you would like to show named colors, please check it.
If you would like to show colors of Color.decode(<hex>)
e.g. Color.decode("#000000")
, Please add java
to "Regex for enabled mime-types" of Hex and CSS e.g. (^text/(x-)?(css|less|sass|scss|java)$
)
If you have some requests, problems, and more, first of all, please submit them to Issues. Please don't create PRs soon. I'll request creating PRs if I need your help.
If you find typos or incorrect English, please let me know. If you would like to create a PR for fixing them, please do that.
#fea
. This plugin recognizes it as a hex color code.new Color(0.25f, 0.50f, 0);
, in such a case, please add f
. i.e. 0f
or 1f
.https://github.com/sponsors/junichi11