Color Day Create Your Own Stained Glass DIY Art Painting Kit Age 3+ Toy

J2P7KA34
$8.00 $10.00
Out of Stock

Description

Create attractive stained glass bottles with this fun andcreative art and craft kit. This DIY stained glass art painting

kit is great for birthday gifts, Christmas, play dates,ladies/girls night, group activities, corporate events, and

birthday parties.

  • Make your shelf or table top pop with this attractive and unique stained glass bottle art and craft kit
  • Kit includes: 2 glass bottles, 1 paint brush, 4 paint buckets (black outline paint for designing; and blue, yellow, pink paint for filling in). Mix the paints to create your own custom colors!.
  • Instructions: (1) Use the black outline paint on the bottles and let it dry (2) Fill in the outlines with the other colors (3) Display your work or give it as a special gift!.
  • Perfect, creative, fun art and craft project for ladies/girls night, group activity, after school activity, corporate events, baby showers, play dates, personalized holiday, Christmas, Mother's or Father's Day gift and birthday parties..
  • Unique art and craft gift to personalize for kids and adults. Must have on holiday toy list!.

 

Related Products

You might also like

Whoops! There was an error.
Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_UNKNOWN)
Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes) Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Allowed memory size of 33554432 bytes exhausted (tried to allocate 2097152 bytes)" Stacktrace: #0 Symfony\Component\Debug\Exception\FatalErrorException in /home/blacklb/public_html/vendor/laravel/framework/src/Illuminate/Session/Store.php:129
0
Symfony
\
Component
\
Debug
\
Exception
\
FatalErrorException
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Session
/
Store.php
129
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForUnserialize($data)
    {
        return $data;
    }
 
    /**
     * Save the session data to storage.
     *
     * @return bool
     */
    public function save()
    {
        $this->ageFlashData();
 
        $this->handler->write($this->getId(), $this->prepareForStorage(
            serialize($this->attributes)
        ));
 
        $this->started = false;
    }
 
    /**
     * Prepare the serialized session data for storage.
     *
     * @param  string  $data
     * @return string
     */
    protected function prepareForStorage($data)
    {
        return $data;
    }
 
    /**
     * Age the flash data for the session.
     *
     * @return void