我正在Hugo建一个网站。我使用"tokiwa“主题作为模板https://themes.gohugo.io/hugo-theme-tokiwa/。
我的电脑上有Flux软件(它可以调节屏幕的色温)。当焊剂的色温设置为1900K时,我喜欢模板的外观。我不确定如何开发我的网站,使它看起来是这样的,即使没有flux。
发布于 2021-03-17 00:24:18
解决办法是使用色温转换工具将色温转换为rgba
here和here
然后编写一个custom.css文件,制作该颜色的滤镜
.flux-overlay{ position: relative; z-index: 1000; top: 0; left: 0; min-width: 100%; min-height: 100%; background: rgba(255, 155, 61, 5%); } .flux-background{ background: rgba(255, 155, 61, 5%); }
https://stackoverflow.com/questions/66004294
相似问题