Minimal Theme如何导出彩色标题的pdf 文件?
Obsidian 中是彩色的,导出的pdf文件标题全部都是黑的。
但是其他的标注似乎是正常,例如加粗,斜线,等。
有帖子分享了 css文件,但是不奏效。
请问有人能指点一下吗?
如图,左边是ob,右边是pdf
@media print {
h1 {
color: DarkSlateBlue !important;
}
h2 {
color: MediumPurple !important;
}
h3,
h4 {
color: #ff8f00 !important;
}
code {
background-color: DarkSlateBlue !important;
color: white !important;
text-decoration: none !important;
margin-right: 10px !important;
}
em {
color: #ff8f00 !important;
}
strong {
color: DarkSlateBlue !important;
}
}
h1 {
color: #816dd8;
border-bottom: 2px solid;
}
h2 {
color: #66d9ef;
border-bottom: 1px solid;
}
h3 {
color: #e6db74;
text-decoration: underline;
}
h4 {
color: #e6db74;
}
strong {
color: #e6db74;
}
em {
color: #66d9ef;
}
谢谢