$.colour.stroke

takes strings of colour values, like hex, rgba etc as would be used in web

Examples


        
$.use(update);

$.w = 150;
$.h = 150;
function update() {
    $.colour.stroke="red";
    $.shape.rectangle($.w/2,$.w-100,$.h-100);
}