all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Christopher Dimech <dimech@gmx.com>
To: Christopher Dimech <dimech@gmx.com>
Cc: Michael Heerdegen <michael_heerdegen@web.de>, help-gnu-emacs@gnu.org
Subject: Re: custom-set-faces for various file types
Date: Sun, 22 Nov 2020 23:53:47 +0100	[thread overview]
Message-ID: <trinity-467cd4c6-91b2-4bee-b7aa-e07ad015012c-1606085627421@3c-app-mailcom-bs01> (raw)
In-Reply-To: <trinity-2aec9543-946a-4ad3-ba86-9f42e804bc9e-1606083018425@3c-app-mailcom-bs01>

Would this be good

(add-hook 'org-mode-hook
   (lambda ()
      (face-remap-add-relative
         '(org-level-1 ((t (:foreground "cyan1"))))
         '(org-level-2 ((t (:foreground "chartreuse"))))
         '(org-level-3 ((t (:foreground "dark orange"))))
         '(org-level-4 ((t (:foreground "yellow"))))
         '(org-level-5 ((t (:foreground "magenta"))))
         '(org-level-6 ((t (:foreground "tan1"))))
         '(org-level-7 ((t (:foreground "deep sky blue"))))
         '(org-level-8 ((t (:foreground "orange red")))) )))



> Sent: Sunday, November 22, 2020 at 11:10 PM
> From: "Christopher Dimech" <dimech@gmx.com>
> To: "Michael Heerdegen" <michael_heerdegen@web.de>
> Cc: help-gnu-emacs@gnu.org
> Subject: Re: custom-set-faces for various file types
>
> Could you help me redo the following using face-remap
>
> (add-hook 'texinfo-mode-hook
>    (custom-set-faces
>       '(font-lock-variable-name-face ((t (:foreground "green"))))
>       '(font-lock-builtin-face ((t (:foreground "green"))))       ))
>
> ;; ----------------------------------------------------------------------
> ;; Colourise Texinfo Outlines Levels (Chapters, Sections, Headlines)
> (custom-set-faces
>    '(texinfo-heading
>        ((t (:inherit font-lock-function-name-face
>             :foreground "#ffdd00"))) ))
>
> ;; ----------------------------------------------------------------------
> ;; Colourise Org-Mode Heading Levels
> (custom-set-faces
>    '(org-level-1 ((t (:foreground "cyan1"))))
>    '(org-level-2 ((t (:foreground "chartreuse"))))
>    '(org-level-3 ((t (:foreground "dark orange"))))
>    '(org-level-4 ((t (:foreground "yellow"))))
>    '(org-level-5 ((t (:foreground "magenta"))))
>    '(org-level-6 ((t (:foreground "tan1"))))
>    '(org-level-7 ((t (:foreground "deep sky blue"))))
>    '(org-level-8 ((t (:foreground "orange red"))))    )
>
>
>
> > Sent: Sunday, November 22, 2020 at 10:39 PM
> > From: "Michael Heerdegen" <michael_heerdegen@web.de>
> > To: help-gnu-emacs@gnu.org
> > Subject: Re: custom-set-faces for various file types
> >
> > Christopher Dimech <dimech@gmx.com> writes:
> >
> > > > What is your goal?  Faces looking differently depending on the major
> > > > mode?
> > >
> > > I would like that some special constructs are highligthed so that the
> > > contrast would be suitable for assistive reasons.  For instance, in
> > > current texinfo modes, constructs in pure tex do not get highlighted.
> > > So I have some code that uses custom-set-faces in texi-init.el.
> > >
> > > The Manual says that custom-set-variables must be only called once.
> > > [...]
> >
> > I don't think custom is the right tool for your purpose.  Face
> > definitions are global.  You can switch between settings ("themes"), but
> > the effect is always global.
> >
> > For texinfo, maybe you could instead change the font-locking of the
> > mode?  It's defined in `texinfo-font-lock-keywords'.  Maybe it's enough
> > to add an entry to that list?
> >
> > Emacs also supports per-buffer modifications of faces.  The mechanism is
> > called "face-remap".  You could use it in the mode's hooks to change how
> > a face looks like in buffers using that mode.  `face-remap-add-relative'
> > is the function to use, takes a face and a list of specs.  Using that
> > would be a cleaner solution for your case I think.
> >
> > Michael.
> >
> >
> >
>
>



  reply	other threads:[~2020-11-22 22:53 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-22 17:30 custom-set-faces for various file types Christopher Dimech
2020-11-22 20:57 ` Michael Heerdegen
2020-11-22 21:16   ` Christopher Dimech
2020-11-22 21:39     ` Michael Heerdegen
2020-11-22 22:04       ` Christopher Dimech
2020-11-22 22:10       ` Christopher Dimech
2020-11-22 22:53         ` Christopher Dimech [this message]
2020-11-22 23:38           ` Michael Heerdegen
2020-11-22 23:52             ` Christopher Dimech

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=trinity-467cd4c6-91b2-4bee-b7aa-e07ad015012c-1606085627421@3c-app-mailcom-bs01 \
    --to=dimech@gmx.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=michael_heerdegen@web.de \
    /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 external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.