我昨天更新了 texlive 2021,其中一个更新似乎会在使用 lualatex 时重置新页面上的文本颜色。我检查了 pdflatex 和 xelatex,它们似乎没有同样的问题。我不记得在\color{TextCoulor}
更新 texlive 之前是否设置了脚注中的文本颜色。
\documentclass{article}
\usepackage{fontspec}
\usepackage{xcolor}
\usepackage{lipsum}
\definecolor{PageCoulor}{RGB}{70, 70, 70}
\definecolor{TextCoulor}{RGB}{225, 225, 225}
\AtBeginDocument
{
\pagecolor{PageCoulor}
\color{TextCoulor}
}
\begin{document}
\lipsum
\end{document}