fatiparty--- via "General discussions about Org-mode." <emacs-orgmode@gnu.org> writes:
> Jan 15, 2022, 02:13 by e.fr...@ucl.ac.uk: > >> On Friday, 14 Jan 2022 at 14:44, fatipa...@tutanota.com wrote: >> >>> I would like to include the customisation using elisp code >>> >> >> Have a look at, for instance, >> >> ,----[ C-h f set-face-foreground RET ] >> | set-face-foreground is an interactive native compiled Lisp function in >> | ‘faces.el’. >> | >> | (set-face-foreground FACE COLOR &optional FRAME) >> | >> | Change the foreground color of face FACE to COLOR (a string). >> | FRAME nil or not specified means change face on all frames. >> | COLOR can be a system-defined color name (see ‘list-colors-display’) >> | or a hex spec of the form #RRGGBB. >> | When called interactively, prompts for the face and color. >> | >> `---- >> > What is the face name associated with inline footnotes? > You might find the command M-x list-faces-display useful as it will show you a list of the known faces with sample text using the attributes of each face. You can also use the interface to inspect the current values for a face and modify the face (via custom). For setting attributes using elisp, you might find the function set-face-attributes useful.