import Bilza, { Ui,hsl,getRandom} from "../../src/bilza.js";

let bil = new Bilza("bilza", 70);

bil.background.color.set(hsl(0,5,30));
//--------------------
const comp = bil.add(0,60).text("ABCDEFG",hsl(240));

comp.align(1,1);

comp.theme.color(0);
comp.showBackground.set(true);

comp.x.set(50);
comp.y.set(50);
comp.fontSize.set(20);
comp.fontSize.oscillate(1,50,5,120,5);
//--------------------
const ui = new Ui(bil);
bil.draw();