nmfs-opensci / quarto_titlepages

A Quarto extension for making title and cover pages for PDF output.
https://nmfs-opensci.github.io/quarto_titlepages/
Creative Commons Zero v1.0 Universal
115 stars 20 forks source link

vrule-color does not work #55

Open Michael-Sheppard opened 3 months ago

Michael-Sheppard commented 3 months ago

Description

According to titlepage-theme options listed on https://nmfs-opensci.github.io/quarto_titlepages/02-titlepages.html, users should have the ability to change the color of the vertical rule on the title page by specifying vrule-color under titlepage-theme. I am able to successfully change the title font color using title-color, but using vrule-color does nothing or seems to be ignored.

Steps to Reproduce

To reproduce what I am doing, I simply used example_1.qmd that comes with installation of the extension. Under titlepage-pdf, I added the following right below line 44 keep-tex: TRUE

    titlepage-theme:
      elements: ["\\titleblock", "\\logoblock", "\\authorblock", "\\vfill", "\\footerblock", "\\affiliationblock"]
      title-color: "myblue"
      vrule-color: "mygreen"
      vrule-width: "3pt"
    include-in-header:
      text: |
        \definecolor{myblue}{HTML}{1C4980}
        \definecolor{mygreen}{HTML}{808000}

Yet, the vertical rule continues to render in black. image