multihack / multihack-web

Realtime collaboration for programmers. (Web Version)
https://multihack.github.io/multihack-web/
MIT License
93 stars 18 forks source link

Multihack Logo #36

Closed tweakimp closed 7 years ago

tweakimp commented 7 years ago

I dont know if this is the right place to ask, but does Mutlihack and the editor plugins need an own logo? Currently there is this one with the two cricling arrows in brackets. It looks boring and a lot like a refresh button.

I could help, I even have some ideas. Are you interested and if so, what do you want it to look like?

t-mullen commented 7 years ago

That would be great! I haven't put much effort into branding yet, but I don't have experience in logo design so anything you can come up with would be cool to see :+1:

tweakimp commented 7 years ago

I'm currently not at home, but my idea was something like this http://i.imgur.com/EHnYkv5r.jpg

What do you think? Maybe with a circle around it.. When I'm back home I could make a digital Version of this

t-mullen commented 7 years ago

It looks good. Only concern is that it might be too complex to be scaled down to the size of a Brackets button. The arrows might be tiny.

tweakimp commented 7 years ago

Yeah, I just wanted to share the general idea. Proportions and a clean look will be done in Photoshop.

t-mullen commented 7 years ago

Sounds good. Excited to see what you can do!

tweakimp commented 7 years ago

Do you have any guide lines or restrictions regarding size, style, color, letters etc.?

tweakimp commented 7 years ago

https://jsfiddle.net/tweakimp/knfb9o3L/

t-mullen commented 7 years ago

That looks great! Thanks for putting it in SVG format too.

I'll try to get this in the Brackets extension soon. Not sure about how to integrate it into the other versions. Maybe a favicon or something.

Thanks!

tweakimp commented 7 years ago

I'm glad you like it. I wish I could help you more, I really enjoy this extension!

t-mullen commented 7 years ago

Do you mind sending me the svg as a file? Had some trouble extracting it from the JSFiddle.

tweakimp commented 7 years ago

I coded it there :D Still not at home, I did it on my phone. Cant you just save the <svg> part as a *.svg file?

t-mullen commented 7 years ago

IKR? That should work. Maybe it's an OSX thing. Please send the file whenever you have the chance 👍

tweakimp commented 7 years ago

I hope it's ok like this. I have never done this before. icon.zip

t-mullen commented 7 years ago

Thanks, that worked. I'll add this into the Brackets extension soon. Merging this issue with #37 , but feel free to continue discussion here.

t-mullen commented 7 years ago

Looks great:

screen shot 2017-04-28 at 1 33 24 am

Should be in next release.

tweakimp commented 7 years ago

Added viewbox to the logo code. You can now resize the logo by just changing its height and width.

<svg height="500" width="500" viewBox="0 0 48 48">
<!--TOP-->
<path d="M 8 12 Q 24 -4, 40 12" style="fill: none; stroke: black; stroke-width:2" />
<!--TOPARROW-->
<path d="M 34 12 42 8 42 16Z" />
<!--BOTTOM-->
<path d="M 8 36 Q 24 52, 40 36" style="fill: none; stroke: black; stroke-width: 2" />
<!--BOTTOMARROW-->
<path d="M 14 36 L 6 40 L 6 32 Z"/>
<!--LEFT-->
<polyline points="16,16 4,24 16,32" 
style="fill:none;stroke:black;stroke-width:3 " /> 
<!--RIGHT-->
<polyline points="32,16 44,24 32,32" style="fill: none; stroke: black; stroke-width: 3" />
<!--MIDDLE-->
<polyline points="28,12 20,36" style="fill: none; stroke: black; stroke-width: 3" />
</svg>

logo.zip