let () = (* .at *) let w, h = (160, 90) in let svg = Svg.new_svg_document ~width:(w) ~height:(h) () in let red = "#d20605" in let white = "#fcfcfc" in Svg.add_rect svg ~x:(0) ~y:(0) ~width:(w) ~height:(h) ~fill:red (); Svg.add_rect svg ~x:(0) ~y:(0) ~width:(w) ~height:(((h/3)*2)+2) ~fill:white (); Svg.add_rect svg ~x:(0) ~y:(0) ~width:(w) ~height:((h/3)-2) ~fill:red (); Svg.add_newline svg; Svg.finish_svg svg; Svg.print_svg_document svg; ;;