ACE模板知识积累-CSS部分-2-color

来源:互联网 发布:kahn算法 编辑:程序博客网 时间:2024/06/15 05:17

颜色系,这一部分比较好理解,就是字体颜色,都加了important:(取自ace.min.css美化后第333行到383行)

.dark {
    color:#333!important
}
.white {
    color:#fff!important
}
.red {
    color:#dd5a43!important
}
.light-red {
    color:#f77!important
}
.blue {
    color:#478fca!important
}
.light-blue {
    color:#93cbf9!important
}
.green {
    color:#69aa46!important
}
.light-green {
    color:#b0d877!important
}
.orange {
    color:#ff892a!important
}
.light-orange {
    color:#fcac6f!important
}
.orange2 {
    color:#feb902!important
}
.purple {
    color:#a069c3!important
}
.pink {
    color:#c6699f!important
}
.pink2 {
    color:#d6487e!important
}
.brown {
    color:#a52a2a!important
}
.grey {
    color:#777!important
}
.light-grey {
    color:#bbb!important
}

0 0
原创粉丝点击