Variable: cua-read-only-cursor-color

cua-read-only-cursor-color is a customizable variable defined in cua-base.el.gz.

Value

"darkgreen"

Documentation

Cursor color used in read-only buffers, if non-nil.

Only used when cua-enable-cursor-indications is non-nil.

If the value is a COLOR name, then only the cursor-color attribute will be affected. If the value is a cursor TYPE (one of: box, hollow, bar, or hbar), then only the cursor-type property will be affected. If the value is a cons (TYPE . COLOR), then both properties are affected.

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-base.el.gz
(defcustom cua-read-only-cursor-color "darkgreen"
  "Cursor color used in read-only buffers, if non-nil.
Only used when `cua-enable-cursor-indications' is non-nil.

If the value is a COLOR name, then only the `cursor-color' attribute will be
affected.  If the value is a cursor TYPE (one of: box, hollow, bar, or hbar),
then only the `cursor-type' property will be affected.  If the value is
a cons (TYPE . COLOR), then both properties are affected."
  :type '(choice
	  (color :tag "Color")
	  (choice :tag "Type"
		  (const :tag "Filled box" box)
		  (const :tag "Vertical bar" bar)
		  (const :tag "Horizontal bar" hbar)
		  (const :tag "Hollow box" hollow))
	  (cons :tag "Color and Type"
		(choice :tag "Type"
			(const :tag "Filled box" box)
			(const :tag "Vertical bar" bar)
			(const :tag "Horizontal bar" hbar)
			(const :tag "Hollow box" hollow))
		(color :tag "Color"))))