TEAL INSPIRATION

Your Color Guide Is Ready

Download The 5-Minute Color Fix and start using color more intentionally today.


DOWNLOAD THE GUIDE →

Want Your Exact Colors?

The guide gives you a beautiful starting point. A personal color analysis gives you a custom palette you can use for shopping, outfits, makeup, and building a wardrobe that finally works together.


BOOK A PERSONAL COLOR ANALYSIS →

TEALINSPIRATION.COM

function calculateResult() { var totalQuestions = 6; var answers = document.querySelectorAll('#quizForm input[type=radio]:checked'); var resultBox = document.getElementById("result"); if (answers.length < totalQuestions) { resultBox.style.display = "block"; resultBox.style.opacity = 0; setTimeout(function() { resultBox.style.opacity = 1; }, 100); resultBox.innerHTML = "

Almost there ✨

Answer all 6 questions to see your result.

"; return; } var scores = { classic: 0, creative: 0, romantic: 0, natural: 0, dramatic: 0 }; answers.forEach(function(ans) { scores[ans.value]++; }); var result = Object.keys(scores).reduce(function(a, b) { return scores[a] >= scores[b] ? a : b; }); var resultsText = { classic: { title: "You’re Classic", desc: "Your style is timeless, polished, and refined.", link: "/fashion-personality-classic/" }, creative: { title: "You’re Creative", desc: "Your style is expressive, playful, and unique.", link: "/fashion-personality-creative/" }, romantic: { title: "You’re Romantic", desc: "Your style is soft, feminine, and detail-oriented.", link: "/fashion-personality-romantic/" }, natural: { title: "You’re Natural", desc: "Your style is relaxed, effortless, and practical.", link: "/fashion-personality-natural/" }, dramatic: { title: "You’re Dramatic", desc: "Your style is bold, striking, and high-impact.", link: "/fashion-personality-dramatic/" } }; resultBox.style.display = "block"; resultBox.style.opacity = 0; setTimeout(function() { resultBox.style.opacity = 1; }, 100); resultBox.innerHTML = "

YOUR STYLE RESULT

" + "

" + resultsText[result].title + "

" + "

" + resultsText[result].desc + "

" + "

See Your Full Result →

" + "

Most people get stuck choosing colors. This is where everything starts to click.

"; resultBox.scrollIntoView({ behavior: "smooth", block: "center" }); }