(defn message [text {:keys [style color]}] ...) (message "Text" {:style :bold :color :red})
(defn message [text opts] (let [style (:style opts) color (:color opts)] ...))