Skip to content

Commit

Permalink
[fu] highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Nov 13, 2024
1 parent 2a1b8f7 commit 87cd599
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/init-highlight.el
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Return a value between 0 and 1."
(defun exordium-x-color-luminance (color)
"Calculate the luminance of a COLOR string (e.g. \"#ffaa00\", \"blue\").
Return a value between 0 and 1."
(let* ((values (x-color-values color))
(let* ((values (color-values color))
(r (/ (car values) 256.0))
(g (/ (cadr values) 256.0))
(b (/ (caddr values) 256.0)))
Expand Down

0 comments on commit 87cd599

Please sign in to comment.