主题材料之光

时间:2015-12-28 20:40:45

标签: html web material

我一直试图将我的网站https://lavanoid.github.io移植到更“Google标准”,但实际上令人沮丧(感谢谷歌,据我所知,没有很好的记录内容:/)。< / p>

我一直试图以此模板为主题:https://github.com/google/material-design-lite/tree/master/templates/text-only但它并不是那么顺利。我甚至找不到如何改变颜色,这是最重要的部分。

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

任何帮助将不胜感激。谢谢!

1 个答案:

答案 0 :(得分:1)

看起来你需要改变:

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

对此:

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