主题 Material 灯光

Theming Material Light

我一直在尝试将我的网站 https://lavanoid.github.io 移植到 "Google Standard" 但它真的很令人沮丧(感谢 Google,没有很好地记录东西,据我所知可以看到:/).

我一直在尝试为这个模板设置主题:https://github.com/google/material-design-lite/tree/master/templates/text-only 但进展并不顺利。我什至找不到如何更改颜色,这是最重要的部分。

那么,如何将紫色更改为 #2196f3 的十六进制值?

如有任何帮助,我们将不胜感激。谢谢!

看来您需要更改:

.mdl-color--primary {
    background-color: #5e35b1 !important;
}

为此:

.mdl-color--primary {
    background-color: #2196f3 !important;
}