Function: background-color-at-point
background-color-at-point is a byte-compiled function defined in
faces.el.gz.
Signature
(background-color-at-point)
Documentation
Return the background color of the character after point.
On TTY frames, the returned color name can be "unspecified-bg", which stands for the unknown default background color of the display where the frame is displayed.
Source Code
;; Defined in /usr/src/emacs/lisp/faces.el.gz
(defun background-color-at-point ()
"Return the background color of the character after point.
On TTY frames, the returned color name can be \"unspecified-bg\",
which stands for the unknown default background color of the
display where the frame is displayed."
(faces--attribute-at-point :background 'background-color))