Function: bubbles--initialize-faces
bubbles--initialize-faces is a byte-compiled function defined in
bubbles.el.gz.
Signature
(bubbles--initialize-faces)
Documentation
Prepare faces for playing bubbles.
Source Code
;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defun bubbles--initialize-faces ()
"Prepare faces for playing `bubbles'."
(copy-face 'default 'bubbles--highlight-face)
(set-face-background 'bubbles--highlight-face "#8080f4")
(when (display-color-p)
(setq bubbles--faces
(mapcar (lambda (color)
(let ((fname (intern (format "bubbles--face-%s" color))))
(unless (facep fname)
(copy-face 'default fname)
(set-face-foreground fname color))
fname))
(bubbles--colors)))))