Anyone knows how to make a Julia shield?

Using this website I see that some are able to make small logos:

I need to learn how to do it for a small Julia logo - does anyone happen to know how?

For example one for Angular looks like this:

image

Kind regards

1 Like

@cormullion ?

1 Like

static?

juliabadge

using Luxor
@svg begin
    background("black")
    fontface("Avenir-Black")
    table = Table(20, [30, 40, 40])
    @layer begin
        translate(table[1] + (0, 1))
        juliacircles(4)
    end
    sethue("grey30")
    box(table, 2, :fill)
    sethue("white")
    text("label", table[2], halign=:center, valign=:middle)

    sethue("purple")
    box(table, 3, :fill)
    sethue("white")
    text("badge", table[3], halign=:center, valign=:middle)
end 110 20 "/tmp/juliabadge.svg"

dynamic? would need some more work :slight_smile:

6 Likes

I think that is great for my needs, thank you!

Will give it a go in a few days, if not tomorrow, and mark your solution as answer then

Kind regards