Home » Shop » Rainbow Cloud Set

Rainbow Cloud Set

KShs 1,500.00

A sparkling rainbow cloud necklace and earrings set in 18K gold plating with colorful crystal accents. Hypoallergenic and skin-safe — fun, everyday style for kids to adults.

Availability: Hurry, Only 3 left.
Delivery & Return
Estimated Delivery:
24 August - 25 August
Description

Add a sparkle of joy to your everyday style with the Rainbow Cloud Jewellery Set from Tricia Jewellery. Featuring an open cloud design outlined in multicolor crystals — blue, white, yellow, and pink — this set is crafted in 18K gold plating over stainless steel for a rich, lasting shine.

Why You’ll Love It

  • Matching cloud stud earrings (16×10mm) & pendant (18×12mm)
  • Multicolor crystal detailing for extra sparkle
  • Adjustable cross chain, 45cm + 5cm extension
  • Hypoallergenic, non-tarnishing 18K gold plating
  • Fun and eye-catching for kids, teens & adults

Bright, playful, and beautifully detailed, this rainbow cloud set adds a cheerful sparkle to any outfit — perfect for everyday wear or as a fun gift.

Scroll To Top
  • Menu
  • Categories
Close
Home
Sidebar
0 Wishlist

Your Cart 0

Close

Shopping cart is empty!

Continue Shopping

Rainbow Cloud Set
Rainbow Cloud Set
KShs 1,500.00
========================================================================== */ jQuery(function ($) { // Matches "Zone Name (+KShs 500.00)" or "Zone Name (KShs 500.00)" // Captures: 1 = zone name, 2 = price (with currency), or undefined if free var PRICE_PATTERN = /^(.*?)\s*\(\+?\s*(KShs?\s?[\d,]+(?:\.\d{2})?)\)\s*$/i; function parseZoneOption(rawText) { var match = rawText.match(PRICE_PATTERN); if (match) { return { zone: match[1].trim(), price: match[2].trim() }; } // No price found in the text — treat as free / included return { zone: rawText.trim(), price: 'Free' }; } function formatZoneRow(state) { // state.text is undefined for the placeholder / loading option if (!state.id || !state.text) { return state.text; } var parsed = parseZoneOption(state.text); var $row = $( '
' + '' + '' + '
' ); $row.find('.zone-option-name').text(parsed.zone); $row.find('.zone-option-price').text(parsed.price); return $row; } function formatZoneSelection(state) { if (!state.id || !state.text) { return state.text; } // Keep the selected/closed state as plain text (zone — price) so it // still fits neatly in the collapsed input, same as before. var parsed = parseZoneOption(state.text); return parsed.zone + (parsed.price !== 'Free' ? ' — ' + parsed.price : ''); } function enhanceZoneDropdown($select) { // Skip if we've already enhanced this one if ($select.data('zone-enhanced')) return; // If Select2 is already attached (likely, since the dropdown already // works), destroy and rebuild it with our custom templates if ($select.hasClass('select2-hidden-accessible')) { $select.select2('destroy'); } $select.select2({ templateResult: formatZoneRow, templateSelection: formatZoneSelection, width: '100%' }); $select.data('zone-enhanced', true); } function findAndEnhanceZoneSelects() { // Detects the right