from manim import *
class HelloWorld(Scene):
def construct(self):
# Create shapes with colors
circle = Circle(color=BLUE)
square = Square(color=RED).shift(RIGHT * 2)
triangle = Triangle(color=GREEN).shift(LEFT * 2)
# Add text
title = Text("ManimOnline", color=WHITE).shift(UP * 2)
# Add all objects to the scene
self.add(title, circle, square, triangle)