Silk 2-State Icons
"Silk 2-State" is an icon set derived from the ubiquitous Silk icon set, containing 1000 icons in PNG format. Each icon has two states, normal and dimmed, which can be called using CSS or JavaScript.
Download
Example
accept.png
add.png
anchor.png
application.png
<style type="text/css">
a.accept, a.add, a.anchor, a.application, a.disk {
background-position: left -16px;
background-repeat: no-repeat;
padding-left: 18px;
height: 16px;
color: #9999cc;
text-decoration: none;
}
a.accept:hover, a.add:hover, a.anchor:hover, a.application:hover, a.disk:hover {
background-position: left 0px;
color: #00f;
}
a.accept { background-image: url(icons/accept.png); }
a.add { background-image: url(icons/add.png); }
a.anchor { background-image: url(icons/anchor.png); }
a.application { background-image: url(icons/application.png); }
a.disk { background-image: url(icons/disk.png); }
</style>
.
.
.
<a class="accept" href="icons/accept.png">accept.png</a>
<a class="add" href="icons/add.png">add.png</a>
<a class="anchor" href="icons/anchor.png">anchor.png</a>
<a class="application" href="icons/application.png">application.png</a>

May 6th, 2008 at 11:25:27
Heya That’s a great blog you have going there and I look forward to more posts
May 24th, 2008 at 10:14:29
[...] http://www.projectatomic.com/2008/04/silk-2-state-icons/ [...]
July 7th, 2008 at 04:21:20
[...] "Silk 2 State" is an icon set derived from famous free icon "Silk" from Famfamfam.com. This icon set containing 1000 icons (2 state ready) in PNG format, it means each icon has two states, normal and dimmed, wich can be called using simple CSS or Javascript. Very useful :). [...]