是否有办法改变sphinx网页上标题的颜色?我使用:caption:
指令与toctree,但标题出来的颜色几乎与侧边栏相同。作为参考,这里是链接到难以看到标题的页面,这是我的索引文件:
Contents
============
.. toctree::
:caption: User Documentation
:maxdepth: 2
overview
installation
tutorial
.. toctree::
:maxdepth: 2
:caption: Developer Documentation
dev/conventions
dev/enviroment
dev/docs
dev/site
doc/modules
* :ref:`genindex`
* :ref:`modindex`
.. toctree::
:maxdepth: 2
:caption: Support
trouble/faq
trouble/issuetracker
trouble/contact
你可以添加一个color属性到span. title -text?例如在source/_static/custom.css
put中:
@import url("default.css");
span.caption-text {
color: red;
}
@aflp91确实会改变侧栏中的标题文本,但也会改变toctree
中的标题文本。
如果你想改变侧边栏的标题颜色-并且只在侧边栏-你应该添加这个
.wy-menu > .caption > span.caption-text {
color: #ffffff;
}