Magickal Correspondences 101: How to Match Your Intentions with Herbs, Crystals & Colors

2 min read 434 words
Disclosure: WitchcraftForBeginners may earn a commission from qualifying purchases through affiliate links in this article. This helps support our work at no additional cost to you. Learn more.
Last updated: July 23, 2026

Magickal Correspondences 101: How to Match Your Intentions with Herbs, Crystals & Colors

What Are Magickal Correspondences and Why Do They Matter?

  • Correspondences are symbolic links between natural objects (herbs, stones, colors, planetary hours) and specific energies or intentions.
  • They act as a magickal shortcut – instead of guessing, you use centuries of tested associations to amplify your spellwork.
  • Understanding correspondences helps you build focused, intentional rituals without overwhelming yourself with endless ingredients.

Core Categories Every Beginner Should Know

  • Planetary correspondences (e.g., Sun for success, Moon for intuition, Venus for love) – each planet rules certain days, metals, and herbs.
  • Elemental correspondences (Earth, Air, Fire, Water) – match your intention to the element that feels right (Earth for stability, Fire for transformation).
  • Color correspondences – red for passion/power, green for abundance/healing, blue for peace/communication, purple for psychic work.

Five Essential Herbs & Their Correspondences (With Practical Uses)

  • Rosemary – protection, purification, memory. Burn as incense or add to a sachet for mental clarity.
  • Lavender – peace, sleep, love. Sprinkle dried flowers under your pillow or use in a calming bath spell.
  • Cinnamon – prosperity, success, passion. Stir a pinch into your coffee or use a cinnamon stick as a ritual wand for abundance.
  • Sage – cleansing, wisdom. Smudge your space before any spell to remove stagnant energy.
  • Basil – money, protection, love. Place fresh basil on your altar or add to a money-drawing jar.

Three Crystals Perfect for Correspondence Spells (For Absolute Beginners)

  • Clear quartz – amplifies any intention, good for general spellwork and charging other items.
  • Amethyst – spirituality, intuition, calm. Hold while meditating before divination or sleep.
  • Citrine – abundance, confidence, joy. Keep in your wallet or place on your money altar to attract wealth.

How to Build Your Own Correspondence List (Step-by-Step)

  • Pick one intention (e.g., protection) and research 3-4 correspondences from different categories (herb, stone, color, planet).
  • Create a simple reference card for that intention – use it in every corresponding spell to build muscle memory.
  • Experiment with substitutions – if you don’t have a specific herb, swap it with one that shares the same planetary ruler or element.

Sample Correspondence Chart for Three Common Intentions

  • Love: Rose (herb), Rose quartz (stone), Pink (color), Friday (day), Venus (planet).
  • Protection: Black tourmaline (stone), Black (color), Saturday (day), Saturn (planet), Rosemary (herb).
  • Prosperity: Cinnamon (herb), Citrine (stone), Green (color), Thursday (day), Jupiter (planet).

Action

📚 Explore More on This Topic

Editor's Pick: A comprehensive correspondence reference book.

Browse on Amazon →

Join The Mystic Circle

Weekly spells, moon rituals & magickal wisdom — plus a free ritual planner.

Enjoyed this article?

Join Witchcraft For Beginners for exclusive content and updates.

Subscribe Free

Enhance Your Practice

As an Amazon Associate, I earn from qualifying purchases.

The Complete Witch's Compendium

Everything a Witch Needs, in One Living Grimoire

941 pages across 5 volumes and 6 bonus guides — foundations, herbalism, tarot, crystals, 26 traditions, a fillable Book of Shadows, and a seasonal companion. The last witchcraft resource you'll ever need.

941Pages 5Volumes 6Bonus Guides
Explore the Compendium →
From $19.99 · Save 20% with code WITCHLAUNCH · 30-day guarantee
nick Creighton
Written bynick Creighton

Nick is the founder and lead writer at Witchcraft for Beginners. With years of study in folk magic, herbalism, and modern witchcraft traditions, he creates accessible guides that help newcomers discover and develop their own practice with confidence.

🌙 Get a Free AI Tarot Reading

Luna reads the cards just for you — powered by AI, guided by the stars. No account needed.

Draw Your Cards Now ✨

Powered by Luna's Circle — AI Spiritual Guidance

nick Creighton
nick Creighton

Nick is the founder and lead writer at Witchcraft for Beginners. With years of study in folk magic, herbalism, and modern witchcraft traditions, he creates accessible guides that help newcomers discover and develop their own practice with confidence.

Articles: 305
/** * WCFB Umami funnel stub — product_impression / product_click * * Env-gated via window.WCFB_UMAMI_CONFIG (set by PHP snippet or inline config). * Does NOT emit fake analytics when disabled or when umami is unavailable. */ (function () { 'use strict'; var cfg = window.WCFB_UMAMI_CONFIG || {}; var enabled = Boolean(cfg.enabled); var websiteId = cfg.websiteId || ''; function umamiReady() { return enabled && websiteId && typeof window.umami === 'function'; } function track(name, props) { if (!umamiReady()) { return; } try { window.umami(name, props || {}); } catch (e) { /* silent — analytics must never break the page */ } } function readAttrs(el) { return { product_id: el.getAttribute('data-product-id') || '', variant: el.getAttribute('data-variant') || 'A', surface: el.getAttribute('data-surface') || 'unknown', }; } function bindImpressions() { document.querySelectorAll('[data-event="product_impression"]').forEach(function (el) { if (el.dataset.umamiImpression) { return; } el.dataset.umamiImpression = '1'; track('product_impression', readAttrs(el)); }); } document.addEventListener('click', function (e) { var target = e.target.closest( '[data-event="product_click"], [data-event="add_to_cart"]' ); if (!target) { return; } track('product_click', readAttrs(target)); }, true); if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', bindImpressions); } else { bindImpressions(); } })(); /** * WCFB Exit Intent Modal — loads exit_intent zone HTML once per session. */ (function () { 'use strict'; var SHOWN_KEY = 'wcfb_exit_intent_shown'; if (sessionStorage.getItem(SHOWN_KEY)) return; var apiBase = window.WCFB_CONVERSION_API || ''; if (!apiBase) return; function showModal(html) { if (!html || html.indexOf('wcfb-zone') === -1) return; sessionStorage.setItem(SHOWN_KEY, '1'); var overlay = document.createElement('div'); overlay.className = 'wcfb-exit-overlay'; overlay.innerHTML = ''; overlay.style.cssText = 'position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:99999;display:flex;align-items:center;justify-content:center;padding:1rem'; var modal = overlay.querySelector('.wcfb-exit-modal'); if (modal) { modal.style.cssText = 'max-width:520px;width:100%;background:#12121a;border-radius:12px;padding:1.5rem;position:relative'; } overlay.addEventListener('click', function (e) { if (e.target === overlay || e.target.classList.contains('wcfb-exit-close')) { overlay.remove(); } }); document.body.appendChild(overlay); } function fetchZone() { var url = apiBase.replace(/\/$/, '') + '/zones/exit_intent'; fetch(url, { credentials: 'omit' }) .then(function (r) { return r.text(); }) .then(showModal) .catch(function () {}); } var triggered = false; document.addEventListener('mouseout', function (e) { if (triggered) return; if (!e.relatedTarget && e.clientY <= 0) { triggered = true; fetchZone(); } }); })();
Featured on
Listed on DevTool.ioListed on SaaSHub
Featured on
Listed on DevTool.ioListed on SaaSHub