# Anyone knows how to make a Julia shield?

**URL:** https://discourse.julialang.org/t/anyone-knows-how-to-make-a-julia-shield/92520
**Category:** Offtopic
**Created:** [January 4, 2023, 7:13pm UTC](https://discourse.julialang.org/t/anyone-knows-how-to-make-a-julia-shield/92520 "2023-01-04T19:13:20Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Ahmed\_Salih](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ahmed_salih/32/206579_2.png) [@Ahmed\_Salih](https://discourse.julialang.org/u/Ahmed_Salih)
#### Post date: [January 4, 2023, 7:13pm UTC](https://discourse.julialang.org/t/anyone-knows-how-to-make-a-julia-shield/92520/1 "2023-01-04T19:13:20Z")

</div>

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

> **[Shields.io | Shields.io](https://shields.io/)**
>
> Concise, consistent, and legible badges

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](https://global.discourse-cdn.com/julialang/original/3X/8/f/8fa6e883f902da2b37f47db64899eebc6134681f.png)

Kind regards

---

<div class="post-metadata">

### Author: ![mkitti](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mkitti/32/12459_2.png) [@mkitti](https://discourse.julialang.org/u/mkitti)
#### Post date: [January 4, 2023, 8:10pm UTC](https://discourse.julialang.org/t/anyone-knows-how-to-make-a-julia-shield/92520/2 "2023-01-04T20:10:38Z")

</div>

@cormullion ?

---

<div class="post-metadata">

### Author: ![cormullion](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/cormullion/32/49131_2.png) [@cormullion](https://discourse.julialang.org/u/cormullion)
#### Post date: [January 4, 2023, 8:33pm UTC](https://discourse.julialang.org/t/anyone-knows-how-to-make-a-julia-shield/92520/3 "2023-01-04T20:33:58Z")

</div>

static?

![juliabadge](https://global.discourse-cdn.com/julialang/original/3X/7/c/7c6d08ec6c799b416fb3308122a58b6520af6a74.png)

> ****
>
> ```julia
> 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 🙂

---

<div class="post-metadata">

### Author: ![Ahmed\_Salih](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/ahmed_salih/32/206579_2.png) [@Ahmed\_Salih](https://discourse.julialang.org/u/Ahmed_Salih)
#### Post date: [January 4, 2023, 10:41pm UTC](https://discourse.julialang.org/t/anyone-knows-how-to-make-a-julia-shield/92520/4 "2023-01-04T22:41:57Z")

</div>

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
