From: suzee <vronk+cllbrtn.mcs@mailbox.org>
To: help-gnu-emacs@gnu.org
Subject: Problem with defining a background color by variable
Date: Sun, 12 Jun 2022 10:24:30 +0200 [thread overview]
Message-ID: <0916306f-7e89-426d-5b05-631e5b8fa522@mailbox.org> (raw)
Hello,
I want to change the background color of code (and other) blocks in
org-mode as proposed here:
https://orgmode.org/worg/org-contrib/babel/examples/fontify-src-code-blocks.html#org4218fd0
I use emacs with a theme (gruvbox) and when I literally use the proposed
code
(defface org-block-background
'((t (:background "#FFFFEA")))
"Face used for the source block background.")
it does work. But I want to use a color, which is derived (made darker
or lighter) from another color by an emacs lisp function, so basically I
want something like this:
(defvar mycolor (color-lighten-name "navy" 20))
(defface org-block-background
'((t (:background mycolor)))
"Face used for the source block background.")
However, when I try this, I get the following error when debugging:
Debugger entered--Lisp error: (wrong-type-argument stringp mycolor)
internal-set-lisp-face-attribute(org-block-background :background
mycolor #<frame emacs@Machine 0x11e7c30>)
set-face-attribute(org-block-background #<frame emacs@Machine
0x11e7c30> :background mycolor)
[...]
Does someone know why it fails? Is it not possible to use a variable for
the color there?
What can I do to make it work or to achieve my goal in a different way?
I searched the docs and manuals, but didn't find a solution. I also
checked the type of the variable 'mycolor' and it is in fact a string
and 'stringp mycolor' returns t, so I don't understand the error
message. But my knowledge of elisp is very sketchy, so I might miss
something very basic.
Thanks
suzee
next reply other threads:[~2022-06-12 8:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-12 8:24 suzee [this message]
2022-06-12 8:34 ` Problem with defining a background color by variable Eli Zaretskii
2022-06-12 8:58 ` suzee
2022-06-12 9:16 ` Eli Zaretskii
2022-06-12 9:41 ` suzee
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=0916306f-7e89-426d-5b05-631e5b8fa522@mailbox.org \
--to=vronk+cllbrtn.mcs@mailbox.org \
--cc=help-gnu-emacs@gnu.org \
/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.
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).