import Bilza, { Ui, hsl} from "../../src/bilza.js";
let bil = new Bilza("bilza", 70);
bil.background.color.set("#031363");
const t = bil.add(0,20 ).text("Text Padding Demo", "#ffff00");
t.align(1,1);
t.x.set(50);
t.y.set(50);
t.fitToWidth.set(true);
t.width.set(50);
t.showBackground.set(true);
t.colorBackground.set("#000000");
t.border.set(4);
t.colorBorder.set("red");
t.paddingLeft.animate(2, 4, 0, 45);
t.paddingRight.animate(5, 7, 0, 45);
t.paddingTop.animate(8, 10, 0, 45);
t.paddingBottom.animate(11,14, 0, 45);
const ui = new Ui(bil);
bil.draw();