Variable: mhtml-ts-mode-css-fontify-colors

mhtml-ts-mode-css-fontify-colors is a customizable variable defined in mhtml-ts-mode.el.gz.

Value

t

Documentation

Whether CSS colors should be fontified using the color as the background.

If non-nil, text representing a CSS color will be fontified such that its background is the color itself. Works like css--fontify-region.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/mhtml-ts-mode.el.gz
(defcustom mhtml-ts-mode-css-fontify-colors t
  "Whether CSS colors should be fontified using the color as the background.
If non-nil, text representing a CSS color will be fontified
such that its background is the color itself.
Works like `css--fontify-region'."
  :tag "HTML colors the CSS properties values."
  :version "31.1"
  :type 'boolean
  :safe 'booleanp)