Skip to content
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

logo #111

Open
lazarusA opened this issue Mar 18, 2023 · 2 comments
Open

logo #111

lazarusA opened this issue Mar 18, 2023 · 2 comments

Comments

@lazarusA
Copy link

We are missing a proper logo for this package. Any ideas, suggestions in this regard will be highly appreciated.

@felixcremer
Copy link
Contributor

Could we base it on the zarr logo but use the Julia colors instead of the color gradient?

@lazarusA
Copy link
Author

ok. This is the best I can do, 😄

logoZarr_b
logoZarr

using GLMakie
using Colors
using CairoMakie

CairoMakie.activate!()

rpyz = [Rect3f(Vec3f(0, j-0.8,k), Vec3f(0.1, 0.8,0.8))
    for j in 1:7 for k in 1:7]
rmyz = [Rect3f(Vec3f(j-0.8, 0,k), Vec3f(0.8, 0.1,0.8))
    for j in 1:7 for k in 1:7]

fig = Figure(resolution=(500,500), backgroundcolor=:transparent)
ax = LScene(fig[1,1]; show_axis=false)
wireframe!.(rpyz; color = "#4063D8", transparency=true, shading=false)
mesh!.(rmyz; color=RGB(0.796, 0.235, 0.2), transparency=true, shading=false)
wireframe!(ax, Rect3f(Vec3f(0.1,0.1, 0.8), Vec3f(7,7, 0.1));
    color = "#9558B2",transparency=true, shading=false)
text!(ax, "Z", position = Point3f(3.5,3.5,3.5),
    fontsize=180, align= (:center, :center),
    color=:grey90,
    )
meshscatter!(ax, Point3f(4,4,-0.01); color=:transparent)
Label(fig[0,1], rich("Zarr",
    rich(".", color="#389826"), rich("j", color=RGB(0.796, 0.235, 0.2)), rich("l", color="#4063D8"),
    fontsize = 80, color = "#9558B2"),
    tellwidth=false,
    padding = (0,0,-60,0))
save("logoZarr.svg", fig)
fig

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants