Change the font on Project Status Report

agestrad
Tera Contributor

Is it possible to change the font on Project Status Report in Project Workspace? The default Doc Template editor is quite limiting, but I was able to find the Document Template (sn_doc_page_template) with the JSON that is actually generating the report. Is there an attribute that can change the font for when you're exporting to PDF? The following is what I found for a header with colored text I made, I would like to change its font if possible:

 

{
            "type": "groupblock",
            "attrs": {
                "textAlign": "unset",
                "associatedRecordField": {}
            },
            "content": [
                {
                    "type": "heading",
                    "attrs": {
                        "level": 2,
                        "textAlign": "left",
                        "indent": "0px"
                    },
                    "content": [
                        {
                            "type": "text",
                            "marks": [
                                {
                                    "type": "textColor",
                                    "attrs": {
                                        "color": "RGB(var(--now-color_alert--moderate-2));"
                                    }
                                }

                            ],
                            "text": "PROJECT HEALTH"
                        }
                    ]
                }
            ]
        }
0 REPLIES 0