Function: bubbles--colors

bubbles--colors is a byte-compiled function defined in bubbles.el.gz.

Signature

(bubbles--colors)

Documentation

Return the color list for the current game theme.

Source Code

;; Defined in /usr/src/emacs/lisp/play/bubbles.el.gz
(defsubst bubbles--colors ()
  "Return the color list for the current game theme."
  (pcase bubbles-game-theme
    ('easy
     bubbles--colors-2)
    ('medium
     bubbles--colors-3)
    ('difficult
     bubbles--colors-4)
    ('hard
     bubbles--colors-5)
    ('user-defined
     bubbles-colors)))