How to highlight the area between four lines in julia Plots.jl

I want to visualize a simple optimization problem.
The problem is:
min 3x + 2y
s.t. -3x + 3y <= 5
2x + 3y >= 9
x, y >= 0
How it is possible to highlight the feasible region in this problem. In other words, I want to highlight the area between -3x + 3y <= 5, 2x + 3y >= 9, x >= 0 , y >= 0

The easiest way might be GitHub - JuliaPolyhedra/Polyhedra.jl: Polyhedral Computation Interface

Linking to a possible solution in this other post.