-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add logo to the documentation #51
Comments
I initially designed with another balancing scale, but I found some cons with this design.
|
They both look really great! I am amazed at you efforts, thanks a lot. I am leaning towards the initial design.
The amount of words in favour of the initial design makes it seem like I care a lot about which one it is, but I actually think they both look good. Another idea that popped into my mind, which is a little simpler and more mathematical: Tagging @cormullion as the Julia logo/icon expert. If nothing else, then just for a third and perhaps tie-breaking opinion. |
They're very nice designs! My only thought is that they are quite "busy" and perhaps more realistic than they need to be. Another possible idea to explore might be something like this: where the squareness suggests packages, and the Julia colours can be used without requiring the Julia logo to get involved in comparisons. Extra points if you can incorporate a smiling face! :) Otherwise a simpler version of either of your designs would be ideal! The second form of scales is better, if I had to choose. |
Your proposal also looks great @cormullion, thanks for the input. I also think it will look as good in dark mode as light, and be the most readable when small. The first two designs definitivly look the best, but that 3rd option does have some virtues, mainly simplicity. All in all I think I am somewhat in favour of the 3rd option. |
Thank you very much for all comments! @cormullion Could you provide a SVG file of the image? I can open a PR with that. |
@hyrodium Hi, sorry for intruding! It was just an idea to discuss, but if you want to run with it, that's cool! The Julia code is: using Luxor, Colors
function draw_logo(D, filename)
Drawing(D, D, filename)
origin()
sethue("black")
R = D * 9/10
circle(O, R/2, :fill)
@layer begin
W = R * 7/10
rotate(-π/16)
sethue(Colors.JULIA_LOGO_COLORS.red)
bx = box(O, W, W/12, :fill)
package_pos = between.(boxmiddleleft(BoundingBox(bx)), boxmiddleright(BoundingBox(bx)), range(0, 1, length=6))
translate(0, -W/4)
sethue(Colors.JULIA_LOGO_COLORS.purple)
box(package_pos[begin + 1], W/3, W/3, :fill)
sethue(Colors.JULIA_LOGO_COLORS.green)
box(package_pos[end - 1], W/3, W/3, :fill)
end
sethue(Colors.JULIA_LOGO_COLORS.blue)
ngon(between(boxmiddlecenter(), boxbottomcenter(), 0.45), W/4, 3, π/6, :fill)
finish()
preview()
end
for i in [64, 128, 500]
draw_logo(i, "/tmp/logo-$(i).png")
end |
I am making a logo for the documentation (and organization).
@KronosTheLate
Do you have any thoughts on the logo?
If this direction looks okay, I will update the logo for the final adjustment!
The text was updated successfully, but these errors were encountered: