Hi All, I need to set the color of a background shape in logic, [COLOR=#ff0000]UPDATE... I just figured it out, the hex code is inverted so 8000 works correctly[/COLOR] Now i just need to remove the black rectangle that is being put there when placing the rectangle. Like this - SetBrushColor(</body>8080); I'm using this web site to select the color... [URL]https://htmlcolorcodes.com/color-picker/[/URL] But when i try to set the color visually and use that code it doesn't match up. It has a very good method to select the color and show the Hex number for it. BUT when i put that number into the logic code it shows a completely different color. I'm after a dark green like in the color selection below but can't seem to select the correct Hex equivalent for it. Other than that, the code works ok, i just set the page timeout to 30 seconds, See code below image... [ATTACH=full]3554[/ATTACH] This works great now, thanks to Ashley [CODE]once ShowingPage("Calibration Page") then TimerSet(3, 30); if ShowingPage("Calibration Page") then Begin TextPos(447, 443); SetFontSize(20); DrawText('', 60 - TimerTime(3)); Delay(1); SetBrushColor(</body>8080); Rectangle(500, 475, 550, 440); time_counter := time_counter -1; if time_counter = 0 then ShowPage("Welcome Screen") end [/CODE]