37 lines
641 B
YAML
37 lines
641 B
YAML
{
|
|
"pageSetup" : {
|
|
"size": "Letter",
|
|
},
|
|
"fontsAlias" : {
|
|
"stdFont": "Calibri",
|
|
"headingFont": "Calibri Light"
|
|
},
|
|
"styles" : [
|
|
["normal" , {
|
|
"fontSize": 12
|
|
}],
|
|
["heading" , {
|
|
"parent": "normal",
|
|
"fontName": "headingFont",
|
|
"fontSize": 20,
|
|
"textColor": "#0000ff"
|
|
}],
|
|
["heading1" , {
|
|
"parent": "heading",
|
|
"fontSize": 18,
|
|
}],
|
|
["heading2" , {
|
|
"parent": "heading",
|
|
"fontSize": 16,
|
|
}],
|
|
["heading3" , {
|
|
"parent": "heading",
|
|
"fontSize": 14,
|
|
}],
|
|
["title" , {
|
|
"parent": "heading",
|
|
"fontSize": 40
|
|
}]
|
|
]
|
|
|
|
}
|