├── Darkcoin-icon-sketch.sketch ├── version ├── Data └── metadata ├── mac-icons ├── Bitcoin │ ├── Bitcoin-mac-sketch.sketch │ │ ├── version │ │ ├── Data │ │ └── metadata │ ├── Mac │ │ ├── icons.icns │ │ └── icons.iconset │ │ │ ├── icon_16x16.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_128x128.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_256x256@2x.png │ │ │ └── icon_512x512@2x.png │ ├── bitcoin-1024.png │ └── Favicon │ │ ├── favicon-128.png │ │ ├── favicon-16.png │ │ ├── favicon-32.png │ │ ├── favicon-48.png │ │ └── favicon-64.png ├── Dogecoin │ ├── Dogecoin-mac-sketch.sketch │ │ ├── version │ │ ├── Data │ │ └── metadata │ ├── Mac │ │ ├── icons.icns │ │ └── icons.iconset │ │ │ ├── icon_16x16.png │ │ │ ├── icon_32x32.png │ │ │ ├── icon_128x128.png │ │ │ ├── icon_16x16@2x.png │ │ │ ├── icon_256x256.png │ │ │ ├── icon_32x32@2x.png │ │ │ ├── icon_512x512.png │ │ │ ├── icon_128x128@2x.png │ │ │ ├── icon_256x256@2x.png │ │ │ └── icon_512x512@2x.png │ ├── doge-1024.png │ └── Favicon │ │ ├── favicon-16.png │ │ ├── favicon-32.png │ │ ├── favicon-48.png │ │ ├── favicon-64.png │ │ └── favicon-128.png ├── Litecoin │ ├── Litecoin-mac-sketch.sketch │ │ ├── version │ │ ├── Data │ │ └── metadata │ ├── clean-mac-crypto-icons-sketch.sketch │ │ ├── version │ │ ├── Data │ │ └── metadata │ ├── icons.icns │ ├── litecoin-color-mac.ai │ └── icons.iconset │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32.png │ │ ├── icon_512x512.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_512x512@2x.png │ │ └── litecoin-color-1024x1024.png └── Peercoin │ ├── Peercoin-mac-sketch.sketch │ ├── version │ ├── Data │ └── metadata │ ├── v1 │ ├── icons.icns │ └── icons.iconset │ │ ├── icon_16x16.png │ │ ├── icon_32x32.png │ │ ├── icon_128x128.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_256x256@2x.png │ │ └── icon_512x512@2x.png │ ├── v1-alt │ ├── icons.icns │ └── icons.iconset │ │ ├── icon_16x16.png │ │ ├── icon_32x32.png │ │ ├── icon_128x128.png │ │ ├── icon_256x256.png │ │ ├── icon_512x512.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32@2x.png │ │ └── icon_512x512@2x.png │ ├── Peercoin-mac-alt.png │ └── peercoin-color-mac.ai ├── sample-icons.png ├── colored-coins.png ├── src ├── bw │ ├── bitcoin.ai │ ├── litecoin.ai │ ├── namecoin.ai │ ├── peercoin.ai │ ├── quarkcoin.ai │ ├── bitcoin-alt.ai │ ├── peercoin-v2.ai │ ├── litecoin-alt.ai │ ├── namecoin-alt.ai │ ├── peercoin-alt.ai │ └── quarkcoin-alt.ai ├── main-coins.png ├── updated-icons.ai ├── color │ ├── nxt-color.ai │ ├── bitcoin-color.ai │ ├── ripple-color.ai │ ├── Auroracoin-color.ai │ ├── Megacoin-color.ai │ ├── dogecoin-color.ai │ ├── litecoin-color.ai │ ├── namecoin-color.ai │ ├── peercoin-color.ai │ ├── primecoin-color.ai │ ├── quarkcoin-color.ai │ └── feathercoin-color.ai └── colored-coins@2x.png ├── color-icons ├── png │ ├── @1x │ │ ├── NXT.png │ │ ├── Quark.png │ │ ├── Bitcoin.png │ │ ├── Ripple.png │ │ ├── Auroracoin.png │ │ ├── Dogecoin.png │ │ ├── Litecoin.png │ │ ├── Megacoin.png │ │ ├── Namecoin.png │ │ ├── Peercoin.png │ │ ├── Primecoin.png │ │ └── Feathercoin.png │ └── @2x │ │ ├── NXT@2x.png │ │ ├── Bitcoin@2x.png │ │ ├── Quark@2x.png │ │ ├── Ripple@2x.png │ │ ├── Dogecoin@2x.png │ │ ├── Litecoin@2x.png │ │ ├── Megacoin@2x.png │ │ ├── Namecoin@2x.png │ │ ├── Peercoin@2x.png │ │ ├── Primecoin@2x.png │ │ ├── Auroracoin@2x.png │ │ └── Feathercoin@2x.png └── svg │ ├── Litecoin.svg │ ├── Peercoin.svg │ ├── Primecoin.svg │ ├── Dogecoin.svg │ ├── Bitcoin.svg │ ├── NXT.svg │ └── Namecoin.svg ├── bw-icons ├── png │ ├── @1x │ │ └── Bitcoin-bw.png │ └── @2x │ │ └── Bitcoin-bw@2x.png └── svg │ ├── litecoin.svg │ ├── litecoin-alt.svg │ ├── peercoin.svg │ ├── peercoin-alt.svg │ ├── quarkcoin.svg │ ├── bitcoin.svg │ ├── bitcoin-alt.svg │ ├── quarkcoin-alt.svg │ ├── namecoin.svg │ └── namecoin-alt.svg └── README.md /Darkcoin-icon-sketch.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Bitcoin-mac-sketch.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Dogecoin-mac-sketch.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /mac-icons/Litecoin/Litecoin-mac-sketch.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /mac-icons/Peercoin/Peercoin-mac-sketch.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /mac-icons/Litecoin/clean-mac-crypto-icons-sketch.sketch/version: -------------------------------------------------------------------------------- 1 | 37 -------------------------------------------------------------------------------- /sample-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/sample-icons.png -------------------------------------------------------------------------------- /colored-coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/colored-coins.png -------------------------------------------------------------------------------- /src/bw/bitcoin.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/bitcoin.ai -------------------------------------------------------------------------------- /src/bw/litecoin.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/litecoin.ai -------------------------------------------------------------------------------- /src/bw/namecoin.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/namecoin.ai -------------------------------------------------------------------------------- /src/bw/peercoin.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/peercoin.ai -------------------------------------------------------------------------------- /src/bw/quarkcoin.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/quarkcoin.ai -------------------------------------------------------------------------------- /src/main-coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/main-coins.png -------------------------------------------------------------------------------- /src/bw/bitcoin-alt.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/bitcoin-alt.ai -------------------------------------------------------------------------------- /src/bw/peercoin-v2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/peercoin-v2.ai -------------------------------------------------------------------------------- /src/updated-icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/updated-icons.ai -------------------------------------------------------------------------------- /src/bw/litecoin-alt.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/litecoin-alt.ai -------------------------------------------------------------------------------- /src/bw/namecoin-alt.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/namecoin-alt.ai -------------------------------------------------------------------------------- /src/bw/peercoin-alt.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/peercoin-alt.ai -------------------------------------------------------------------------------- /src/bw/quarkcoin-alt.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/bw/quarkcoin-alt.ai -------------------------------------------------------------------------------- /src/color/nxt-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/nxt-color.ai -------------------------------------------------------------------------------- /src/colored-coins@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/colored-coins@2x.png -------------------------------------------------------------------------------- /src/color/bitcoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/bitcoin-color.ai -------------------------------------------------------------------------------- /src/color/ripple-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/ripple-color.ai -------------------------------------------------------------------------------- /color-icons/png/@1x/NXT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/NXT.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Quark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Quark.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.icns -------------------------------------------------------------------------------- /src/color/Auroracoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/Auroracoin-color.ai -------------------------------------------------------------------------------- /src/color/Megacoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/Megacoin-color.ai -------------------------------------------------------------------------------- /src/color/dogecoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/dogecoin-color.ai -------------------------------------------------------------------------------- /src/color/litecoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/litecoin-color.ai -------------------------------------------------------------------------------- /src/color/namecoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/namecoin-color.ai -------------------------------------------------------------------------------- /src/color/peercoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/peercoin-color.ai -------------------------------------------------------------------------------- /src/color/primecoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/primecoin-color.ai -------------------------------------------------------------------------------- /src/color/quarkcoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/quarkcoin-color.ai -------------------------------------------------------------------------------- /bw-icons/png/@1x/Bitcoin-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/bw-icons/png/@1x/Bitcoin-bw.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Bitcoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Ripple.png -------------------------------------------------------------------------------- /color-icons/png/@2x/NXT@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/NXT@2x.png -------------------------------------------------------------------------------- /src/color/feathercoin-color.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/src/color/feathercoin-color.ai -------------------------------------------------------------------------------- /Darkcoin-icon-sketch.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/Darkcoin-icon-sketch.sketch/Data -------------------------------------------------------------------------------- /bw-icons/png/@2x/Bitcoin-bw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/bw-icons/png/@2x/Bitcoin-bw@2x.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Auroracoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Auroracoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Dogecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Dogecoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Litecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Litecoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Megacoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Megacoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Namecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Namecoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Peercoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Peercoin.png -------------------------------------------------------------------------------- /color-icons/png/@1x/Primecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Primecoin.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Bitcoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Bitcoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Quark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Quark@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Ripple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Ripple@2x.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.icns -------------------------------------------------------------------------------- /mac-icons/Bitcoin/bitcoin-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/bitcoin-1024.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.icns -------------------------------------------------------------------------------- /mac-icons/Dogecoin/doge-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/doge-1024.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.icns -------------------------------------------------------------------------------- /color-icons/png/@1x/Feathercoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@1x/Feathercoin.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Dogecoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Dogecoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Litecoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Litecoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Megacoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Megacoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Namecoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Namecoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Peercoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Peercoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Primecoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Primecoin@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.icns -------------------------------------------------------------------------------- /color-icons/png/@2x/Auroracoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Auroracoin@2x.png -------------------------------------------------------------------------------- /color-icons/png/@2x/Feathercoin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/color-icons/png/@2x/Feathercoin@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/Peercoin-mac-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/Peercoin-mac-alt.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Favicon/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Favicon/favicon-128.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Favicon/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Favicon/favicon-16.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Favicon/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Favicon/favicon-32.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Favicon/favicon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Favicon/favicon-48.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Favicon/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Favicon/favicon-64.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Favicon/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Favicon/favicon-16.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Favicon/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Favicon/favicon-32.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Favicon/favicon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Favicon/favicon-48.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Favicon/favicon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Favicon/favicon-64.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/litecoin-color-mac.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/litecoin-color-mac.ai -------------------------------------------------------------------------------- /mac-icons/Peercoin/peercoin-color-mac.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/peercoin-color-mac.ai -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Favicon/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Favicon/favicon-128.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Bitcoin-mac-sketch.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Bitcoin-mac-sketch.sketch/Data -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_128x128.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_16x16.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_256x256.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_32x32.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_512x512.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_16x16.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_32x32.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Dogecoin-mac-sketch.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Dogecoin-mac-sketch.sketch/Data -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_16x16.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_32x32.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/Litecoin-mac-sketch.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/Litecoin-mac-sketch.sketch/Data -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/Peercoin-mac-sketch.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/Peercoin-mac-sketch.sketch/Data -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_16x16.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_32x32.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_128x128.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_256x256.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_512x512.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_128x128.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_256x256.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_512x512.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_16x16.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_32x32.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_128x128.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_256x256.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_512x512.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Mac/icons.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Bitcoin/Mac/icons.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Mac/icons.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Dogecoin/Mac/icons.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_128x128.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_256x256.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_512x512.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1/icons.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1/icons.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /mac-icons/Peercoin/v1-alt/icons.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Peercoin/v1-alt/icons.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /mac-icons/Litecoin/clean-mac-crypto-icons-sketch.sketch/Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/clean-mac-crypto-icons-sketch.sketch/Data -------------------------------------------------------------------------------- /mac-icons/Litecoin/icons.iconset/litecoin-color-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shphrd/crypto-icons/HEAD/mac-icons/Litecoin/icons.iconset/litecoin-color-1024x1024.png -------------------------------------------------------------------------------- /Darkcoin-icon-sketch.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7892 9 | commit 10 | a6af16d03e62e9b34da1be1098affa7b56d9838b 11 | fonts 12 | 13 | length 14 | 139871 15 | version 16 | 37 17 | 18 | 19 | -------------------------------------------------------------------------------- /mac-icons/Bitcoin/Bitcoin-mac-sketch.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7892 9 | commit 10 | a6af16d03e62e9b34da1be1098affa7b56d9838b 11 | fonts 12 | 13 | length 14 | 168341 15 | version 16 | 37 17 | 18 | 19 | -------------------------------------------------------------------------------- /mac-icons/Dogecoin/Dogecoin-mac-sketch.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7892 9 | commit 10 | a6af16d03e62e9b34da1be1098affa7b56d9838b 11 | fonts 12 | 13 | length 14 | 1036946 15 | version 16 | 37 17 | 18 | 19 | -------------------------------------------------------------------------------- /mac-icons/Litecoin/Litecoin-mac-sketch.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7892 9 | commit 10 | a6af16d03e62e9b34da1be1098affa7b56d9838b 11 | fonts 12 | 13 | length 14 | 151843 15 | version 16 | 37 17 | 18 | 19 | -------------------------------------------------------------------------------- /mac-icons/Peercoin/Peercoin-mac-sketch.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7892 9 | commit 10 | a6af16d03e62e9b34da1be1098affa7b56d9838b 11 | fonts 12 | 13 | length 14 | 163566 15 | version 16 | 37 17 | 18 | 19 | -------------------------------------------------------------------------------- /mac-icons/Litecoin/clean-mac-crypto-icons-sketch.sketch/metadata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | app 6 | com.bohemiancoding.sketch3 7 | build 8 | 7892 9 | commit 10 | a6af16d03e62e9b34da1be1098affa7b56d9838b 11 | fonts 12 | 13 | length 14 | 205786 15 | version 16 | 37 17 | 18 | 19 | -------------------------------------------------------------------------------- /bw-icons/svg/litecoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /bw-icons/svg/litecoin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /bw-icons/svg/peercoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /bw-icons/svg/peercoin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 11 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /bw-icons/svg/quarkcoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /bw-icons/svg/bitcoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /bw-icons/svg/bitcoin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 17 | 18 | 19 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /bw-icons/svg/quarkcoin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 14 | 15 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /color-icons/svg/Litecoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Litecoin 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /color-icons/svg/Peercoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Peercoin 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /color-icons/svg/Primecoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Primecoin 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /bw-icons/svg/namecoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 23 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /bw-icons/svg/namecoin-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | 11 | 12 | 14 | 15 | 24 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /color-icons/svg/Dogecoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Dogecoin 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /color-icons/svg/Bitcoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Bitcoin 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /color-icons/svg/NXT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | NXT 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /color-icons/svg/Namecoin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Namecoin 4 | Created with Sketch (http://www.bohemiancoding.com/sketch) 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | #[Crypto Icons v1.2](http://shphrd.com/crypto-icons) 3 | [![Colored Crypto Coins](colored-coins.png)](https://raw.github.com/shphrd/cryptocurrency-icons/master/colored-coins.png) 4 | 5 | ###An icon pack for the most popular crypto currencies today. 6 | Crypto Icons are scalable vector graphics that can be used on your websites or apps. Created and 7 | maintained by [Chris Shepherd](http://twitter.com/cshphrd). 8 | 9 | -- 10 | 11 | ### Bitcoin 12 | 13 | | [Bitcoin](http://bitcoin.org) 14 | |:---:| 15 | | Bitcoin logo | 16 | 17 | ### Litecoin 18 | 19 | | [Litecoin](http://litecoin.org) 20 | |:---:| 21 | | Litecoin logo | 22 | 23 | ### Peercoin 24 | 25 | | [Peercoin](http://www.peercoin.net) 26 | |:---:| 27 | | Peercoin logo | 28 | 29 | ### Dogecoin 30 | 31 | | [Dogecoin](http://dogecoin.com) 32 | |:---:| 33 | | Dogecoin logo | 34 | 35 | ### Nxt 36 | 37 | | [Nxt](http://www.nxtcommunity.org) 38 | |:---:| 39 | | Nxt logo | 40 | 41 | ### Namecoin 42 | 43 | | [Namecoin](http://namecoin.info) 44 | |:---:| 45 | | Namecoin logo | 46 | 47 | ### Ripple 48 | 49 | | [Ripple](https://ripple.com) 50 | |:---:| 51 | | Ripple logo | 52 | 53 | ### Auroracoin 54 | 55 | | [Auroracoin](http://auroracoin.org) 56 | |:---:| 57 | | Auroracoin logo | 58 | 59 | ### Quark 60 | 61 | | [Quarkcoin](http://www.qrk.cc) 62 | |:---:| 63 | | Quarkcoin logo | 64 | 65 | ### Primecoin 66 | 67 | | [Primecoin](http://primecoin.io) 68 | |:---:| 69 | | Primecoin logo | 70 | 71 | ### Feathercoin 72 | 73 | | [Feathercoin](https://www.feathercoin.com) 74 | |:---:| 75 | | Feathercoin logo | 76 | 77 | ### Megacoin 78 | 79 | | [Megacoin](http://megacoin.co.nz) 80 | |:---:| 81 | | Megacoin logo | 82 | 83 | 84 | TODO 85 | ---- 86 | - [ ] Vertcoin 87 | - [ ] Darkcoin 88 | - [ ] Mac icons for QT apps 89 | 90 | 91 | 92 | Changelog 93 | --------- 94 | - v1.2 - Cleaned up src files, exported more coins, updated readme. 95 | - v1.1 - Colors! More coins supports Dogecoin, Ripple, Primecoin, Feathercoin, Auroracoin, NXT, and Megacoin. 96 | - v1.0 - Added top five crypto coin icons. Currently includes Bitcoin, Litecoin, Peercoin, Namecoin and Quarkcoin. 97 | 98 | Author 99 | ------ 100 | - Email: chris@hashrabbit.co 101 | - Twitter: http://twitter.com/cshphrd 102 | - GitHub: https://github.com/shphrd 103 | 104 | Support 105 | ------- 106 | 107 | - **BTC:** 1DmKSveQm9MXMjqUGvaVXZgViNZuSx7Npi 108 | - **LTC:** LZLWQV1nQZoWvj8CiK2hMQ1bosntT1xkPm 109 | - **DOGE** DLdiRd5LtxefkgKeBgXnVBiAjv2bTnfYzj 110 | - **PPC:** PADhWNeQw3owGD8N25BDVeQh8C1z94PEsu 111 | 112 | License 113 | ------- 114 | [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/deed.en_US) --------------------------------------------------------------------------------