如何更改iconmoon图标的图标颜色

roc*_*ing 0 css html5 icons

我从icomoom下载了一些图标,但图标背景颜色是黑色和白色.我想给自己的颜色.可以告诉我怎么办?

当我下载图标时,我得到了以下style.css

@font-face {
    font-family: 'icomoon';
    src:url('fonts/icomoon.eot?-haa506');
    src:url('fonts/icomoon.eot?#iefix-haa506') format('embedded-opentype'),
        url('fonts/icomoon.woff?-haa506') format('woff'),
        url('fonts/icomoon.ttf?-haa506') format('truetype'),
        url('fonts/icomoon.svg?-haa506#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
    content: "\e600";
}
.icon-images:before {
    content: "\e601";
}
.icon-pawn:before {
    content: "\e602";
}
Run Code Online (Sandbox Code Playgroud)

dri*_*rip 6

图标应视为文本.

如果您为它们应用颜色.他们会改变他们的颜色.

例:

.icon-pawn { color: red; }
Run Code Online (Sandbox Code Playgroud)