From: Philip Kaludercic <philipk@posteo.net>
To: Yilkal Argaw <yilkalargawworkneh@gmail.com>
Cc: Emacs Devel <emacs-devel@gnu.org>
Subject: Re: Adding some convenience functions to color.el
Date: Fri, 09 Jun 2023 06:22:03 +0000 [thread overview]
Message-ID: <873531updg.fsf@posteo.net> (raw)
In-Reply-To: <CAJddU=rZHpYo1w0m2hrdvO57T5c7mN8xm6oTqLmN9nFYqwwWyw@mail.gmail.com> (Yilkal Argaw's message of "Fri, 9 Jun 2023 02:57:41 +0300")
Yilkal Argaw <yilkalargawworkneh@gmail.com> writes:
> Hi
> Today I was messing around with some theme that made use of color.el and I
> noticed some functions that might be of use could be added to color.el to
> help with the conditionally assigning setting some colors based on
> lightness or darkness of some other color. I wondered if it might be useful
> to other users and if it might be worth adding it to color.el. I
>
> diff --git a/lisp/color.el b/lisp/color.el
> index f68cf5e6b17..3740c3d5a7c 100644
> --- a/lisp/color.el
> +++ b/lisp/color.el
> @@ -119,6 +119,18 @@ inclusive."
> (color-hue-to-rgb m1 m2 H)
> (color-hue-to-rgb m1 m2 (mod (- H (/ 3.0)) 1))))))
>
> +(defun color-name-to-hsl (color)
> + "Convert COLOR to HSL."
I think it would make sense to mention what COLOR is. Or at least call
it COLOR-NAME.
> + (apply #'color-rgb-to-hsl (color-name-to-rgb color)))
> +
> +(defun color-name-light-p (color)
> + "Return non-nil if COLOR is on the lighter side."
> + (when color (>= (caddr (color-name-to-hsl color) 0.5))))
IMO using `and' is better if you are interested the return value of an
expression, while `when' is usually more indicative of a side-effect (on
my first reading of this assumption had me confused to the point of the
function).
But setting that aside, why should someone pass nil to this function?
> +
> +(defun color-name-dark-p (color)
> + "Return non-nil if COLOR is on the darker side."
> + (when color (not (color-name-light-p color))))
> +
> (defun color-complement-hex (color)
> "Return the color that is the complement of COLOR, in hexadecimal
> format."
> (apply 'color-rgb-to-hex (color-complement color)))
This is useful!
Could you prepare a patch and update etc/NEWS? It seems that the other
color functions are not documented in the Emacs Lisp manual.
>
> With Regards
> Yilkal Argaw
next prev parent reply other threads:[~2023-06-09 6:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-08 23:57 Adding some convenience functions to color.el Yilkal Argaw
2023-06-09 6:22 ` Philip Kaludercic [this message]
2023-06-09 6:55 ` Eli Zaretskii
2023-06-09 7:26 ` Yilkal Argaw
2023-06-09 7:34 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=873531updg.fsf@posteo.net \
--to=philipk@posteo.net \
--cc=emacs-devel@gnu.org \
--cc=yilkalargawworkneh@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).