DIY Workshops That Transform Small Business Issues Into Growth Opportunities

After 20+ years of consulting with small businesses, we’ve identified a critical pattern: most owners are so busy working in their business they completely forget to work on their business. This fundamental disconnect has led us to develop our new workshop series, designed to address the exact challenges that keep small businesses from reaching their […]

Proven Brand Strategies That Transform Business Growth

MYB Workshops

Many businesses mistakenly believe that brand strategy is just about logos, colours, and design. While visuals are important, they are only one piece of the puzzle. A strong brand starts with strategy, not aesthetics. In our workshops, we challenge this misconception by shifting the focus to the foundations that actually drive business success—mission, vision, values, […]

function updateLogoColor() { let container = document.querySelector(".glassy-container"); let logo = document.querySelector(".logo"); // Get the background color of the element *behind* the glassy container let bgElement = container.parentElement; // Adjust if needed let bgColor = window.getComputedStyle(bgElement).backgroundColor; // Convert RGB to brightness level function getBrightness(color) { let rgb = color.match(/\d+/g); return (parseInt(rgb[0]) * 0.299 + parseInt(rgb[1]) * 0.587 + parseInt(rgb[2]) * 0.114); } let brightness = getBrightness(bgColor); // If brightness is below 128 (dark), switch logo to white logo.style.color = brightness < 128 ? "white" : "black"; } // Run on page load and window resize window.addEventListener("load", updateLogoColor); window.addEventListener("resize", updateLogoColor);