I decided against using sprites and to create the tile dynamically with PIXI.Graphics, but I'm not sure where to start. I can create basic shapes like squares and rectangles but I need some help in a tile.
The closest I can get is this
var graphics = new PIXI.Graphics();
graphics.beginFill(0x989865);
graphics.lineStyle(1, 0x8E8E5E);
graphics.endFill();
graphics.drawRect(50, 50, 50, 50);
app.stage.addChild(graphics);
Something like the image below is what I'm looking for