SavchenkoValeriy/emacs-powerthesaurus@810a25056c -> SavchenkoValeriy/emacs-powerthesaurus@88bc5229cb Silex/docker.el@fbd896e313 -> Silex/docker.el@44f0bbec9b editorconfig/editorconfig-emacs@1d4acc3ec7 -> editorconfig/editorconfig-emacs@1f6f16c24f emacs-citar/citar@ee98b94f7f -> emacs-citar/citar@dd028c6a4d emacs-straight/rainbow-mode@949166cc01 -> emacs-straight/rainbow-mode@55a8c15782 emacsorphanage/quickrun@c680f5137c -> emacsorphanage/quickrun@314beae43c jacktasia/dumb-jump@dbb915441a -> jacktasia/dumb-jump@1dd583011f magit/forge@66b3993c98 -> magit/forge@36208c43bf magit/magit@a4a78d341a -> magit/magit@c1fb53d3de millejoh/emacs-ipython-notebook@e04e1e19c6 -> millejoh/emacs-ipython-notebook@7b9b14435c purcell/envrc@57d78f0138 -> purcell/envrc@7f36664fc6 rafalcieslak/emacs-company-terraform@2d11a21fee -> rafalcieslak/emacs-company-terraform@8d5a16d1bb rejeep/prodigy.el@168f5ace16 -> rejeep/prodigy.el@a3be00d3b9 tkf/emacs-request@c769cf33f2 -> tkf/emacs-request@38ed1d2e64 tmalsburg/helm-bibtex@db73156576 -> tmalsburg/helm-bibtex@ce8c17690d
tools/rgb
Description
Highlights color hex values and names with the color itself, and provides tools to easily modify color values or formats.
Maintainers
This module has no dedicated maintainers.
Module Flags
This module provides no flags.
Plugins
Prerequisites
This module has no prerequisites.
Features
rainbow-mode
provides automatic highlighting to hex color codes, and in
relevant modes, color names (e.g. html color names in css-mode
or LaTeX color
names in latex-mode
)
kurecolor
provides commands to easily change the brightness, saturation, and
hue of hex colors (and a useful hydra for this, if :ui hydra
is enabled), as
well as conversion between hex and css colors
Configuration
hl-line-mode
overrides the color highlighting of rainbow-mode
, limiting
the use of that plugin and on-site color changes using kurecolor
. To
automatically disable it only when rainbow-mode
is active, you can add the
following hook:
;; ~/.doom.d/config.el
(add-hook! 'rainbow-mode-hook
(hl-line-mode (if rainbow-mode -1 +1)))