Latest Coloring Pages

🎨 Coloring Notebook: "Tru in the Clear Water"

Suggested age: 3 to 5 years
Objective: Listen, imagine and draw the story of Tru, the happy little fish.

🐟 Page 1 – Tru, the little fish

Text:
Tru is a happy little fish.
It has colored scales: pink, light blue and silver.
It lives in a large lake with very clear water.

Activity:
🎨 Draw Tru swimming in the lake. Add bubbles and gentle waves.

🏔️ Page 2 – Tru's Home

Text:
The lake is in a place with large white mountains.
The snow melts and runs down the river to the lake.
The sun is shining in the sky and there are soft clouds.

Activity:
🎨 Draw the mountains, the river, the lake, the sun and the clouds. You can use light blue, white, and yellow.

🐸 Page 3 – Tru's Friends

Text:
Tru swims with his friends: other fish, a green frog and a red crab.
They play among the stones, the plants of the water and the bubbles.

Activity:
🎨 Draw Tru with her friends. Add colored stones and plants into the water.

🧑 🔬 Page 4 – The caretakers of the lake

Text:
Near the lake there are people who take great care of the place.
They work in suits and helmets, and look at the water carefully.
Papa Pez says that they take care of the lake and give delicious and natural food.

Activity:
🎨 Draw people with helmets next to the lake. Add a bucket of fish food.

🐠 Page 5 – Tru grows healthy and strong

Text:
Tru eats well, swims much, and grows strong.
The lake is clean, the animals are healthy, and everything is calm.

Activity:
🎨 Draw Tru a little bigger, smiling. Add happy fish and clean water.

🌈 Page 6 – A special place

Text:
Tru lives in a special place.
Everything is natural, clean and beautiful.
And he's a very happy little fish!

Activity:
🎨 Draw Tru doing a spin in the water, with hearts or stars around her.

🎨 coloring notebook: "tru in the clear water" suggested age: 3 to 5 years objective: listen, imagine and draw the story of tru, the happy little fish. 🐟 page 1 – tru, the little fish text: tru is a happy little fish. it has colored scales: pink, light blue and silver. it lives in a large lake with very clear water. activity: 🎨 draw tru swimming in the lake. add bubbles and gentle waves. 🏔️ page 2 – tru's home text: the lake is in a place with large white mountains. the snow melts and runs down the river to the lake. the sun is shining in the sky and there are soft clouds. activity: 🎨 draw the mountains, the river, the lake, the sun and the clouds. you can use light blue, white, and yellow. 🐸 page 3 – tru's friends text: tru swims with his friends: other fish, a green frog and a red crab. they play among the stones, the plants of the water and the bubbles. activity: 🎨 draw tru with her friends. add colored stones and plants into the water. 🧑 🔬 page 4 – the caretakers of the lake text: near the lake there are people who take great care of the place. they work in suits and helmets, and look at the water carefully. papa pez says that they take care of the lake and give delicious and natural food. activity: 🎨 draw people with helmets next to the lake. add a bucket of fish food. 🐠 page 5 – tru grows healthy and strong text: tru eats well, swims much, and grows strong. the lake is clean, the animals are healthy, and everything is calm. activity: 🎨 draw tru a little bigger, smiling. add happy fish and clean water. 🌈 page 6 – a special place text: tru lives in a special place. everything is natural, clean and beautiful. and he's a very happy little fish! activity: 🎨 draw tru doing a spin in the water, with hearts or stars around her.

from fpdf import FPDF
Import os

# Create custom class for notebook
class ColoringBook(FPDF):
    def header(self):
        self.set_font("Arial", "B", 16)
        self.cell(0, 10, "Tru in the Clear Water - Coloring Notebook", ln=True, align="C")
        self.ln(5)

def chapter_title(self, title):
        self.set_font("Arial", "B", 14)
        self.set_text_color(30, 30, 120)
        self.cell(0, 10, title, ln=True)
        self.ln(2)

def chapter_body(self, text):
        self.set_font("Arial", "", 12)
        self.set_text_color(0)
        self.multi_cell(0, 8, text)
        self.ln()

def add_illustration_page(self, title, text, image_path=None):
        self.add_page()
        self.chapter_title(title)
        self.chapter_body(text)
        if image_path and os.path.exists(image_path):
            self.image(image_path, x=30, w=150)
        else:
            self.set_font("Arial", "I", 12)
            self.cell(0, 10, "(Space for drawing and coloring)", ln=True, align="C")

# Create Workbook Instance
pdf = ColoringBook()
pdf.set_auto_page_break(auto=True, margin=15)

# Page Information
pages = [
    {
        "title": "Page 1 – Tru, the little fish",
        "text": "Tru is a happy little fish.\nIt has colored scales: pink, light blue and silver.\nIt lives in a large lake with very clear water."
    },
    {
        "title": "Page 2 – Tru's Home",
        "text": "The lake is in a place with large white mountains.\nThe snow melts and goes down the river to the lake.\nThe sun shines in the sky and there are soft clouds."
    },
    {
        "title": "Page 3 – Tru's Friends",
        "text": "Tru swims with his friends: other fish, a green frog and a red crab.\nThey play among the stones, the plants in the water and the bubbles."
    },
    {
        "title": "Page 4 – The caretakers of the lake",
        "text": "Near the lake there are people who take great care of the place.\nThey work with suits and helmets, and look at the water carefully.\nPapa Fish says that they take care of the lake and give delicious and natural food."
    },
    {
        "title": "Page 5 – Tru grows healthy and strong",
        "text": "Tru eats well, swims much, and grows strong.\nThe lake is clean, the animals are healthy, and everything is quiet."
    },
    {
        "title": "Page 6 – A special place",
        "text": "Tru lives in a special place.\nEverything is natural, clean and beautiful.\nAnd he's a very happy little fish!"
    },
]

# Add the pages to the PDF
for page in pages:
    pdf.add_illustration_page(page["title"], page["text"])

# Save PDF
pdf.output("Tru_en_el_agua_clara_cuaderno_para_colorear.pdf")

From fpdf import fpdf import os # create custom class for notebook class coloringbook(fpdf): def header(self): self.set font("arial", "b", 16) self.cell(0, 10, "tru in the clear water - coloring notebook", ln=true, align="c") self.ln(5) def chapter title(self, title): self.set font("arial", "b", 14) self.set text color(30, 30, 120) self.cell(0, 10, title, ln=true) self.ln(2) def chapter body(self, text): self.set font("arial", "", 12) self.set text color(0) self.multi cell(0, 8, text) self.ln() def add illustration page(self, title, text, image path=none): self.add page() self.chapter title(title) self.chapter body(text) if image path and os.path.exists(image path): self.image(image path, x=30, w=150) else: self.set font("arial", "i", 12) self.cell(0, 10, "(space for drawing and coloring)", ln=true, align="c") # create workbook instance pdf = coloringbook() pdf.set auto page break(auto=true, margin=15) # page information pages = [ { "title": "page 1 – tru, the little fish", "text": "tru is a happy little fish.\nit has colored scales: pink, light blue and silver.\nit lives in a large lake with very clear water." }, { "title": "page 2 – tru's home", "text": "the lake is in a place with large white mountains.\nthe snow melts and goes down the river to the lake.\nthe sun shines in the sky and there are soft clouds." }, { "title": "page 3 – tru's friends", "text": "tru swims with his friends: other fish, a green frog and a red crab.\nthey play among the stones, the plants in the water and the bubbles." }, { "title": "page 4 – the caretakers of the lake", "text": "near the lake there are people who take great care of the place.\nthey work with suits and helmets, and look at the water carefully.\npapa fish says that they take care of the lake and give delicious and natural food." }, { "title": "page 5 – tru grows healthy and strong", "text": "tru eats well, swims much, and grows strong.\nthe lake is clean, the animals are healthy, and everything is quiet." }, { "title": "page 6 – a special place", "text": "tru lives in a special place.\neverything is natural, clean and beautiful.\nand he's a very happy little fish!" }, ] # add the pages to the pdf for page in pages: pdf.add illustration page(page["title"], page["text"]) # save pdf pdf.output("tru en el agua clara cuaderno para colorear.pdf")