Function: htmlize-fstruct-background

htmlize-fstruct-background is a byte-compiled function defined in htmlize.el.

Signature

(htmlize-fstruct-background CL-X)

Documentation

Access slot "background" of htmlize-fstruct struct CL-X.

Source Code

;; Defined in ~/.emacs.d/elpa/htmlize-20250724.1703/htmlize.el
;; We store the face properties we care about into an
;; `htmlize-fstruct' type.  That way we only have to analyze face
;; properties, which can be time consuming, once per each face.  The
;; mapping between Emacs faces and htmlize-fstructs is established by
;; htmlize-make-face-map.  The name "fstruct" refers to variables of
;; type `htmlize-fstruct', while the term "face" is reserved for Emacs
;; faces.

(cl-defstruct htmlize-fstruct
  foreground                            ; foreground color, #rrggbb
  background                            ; background color, #rrggbb
  size                                  ; size
  boldp                                 ; whether face is bold
  italicp                               ; whether face is italic
  underlinep                            ; whether face is underlined
  overlinep                             ; whether face is overlined
  strikep                               ; whether face is struck through
  css-name                              ; CSS name of face
  )