{"id":8309981,"date":"2025-09-01T20:49:35","date_gmt":"2025-09-01T17:49:35","guid":{"rendered":"https:\/\/elementor.com\/tools\/?p=8309981"},"modified":"2025-09-01T20:49:35","modified_gmt":"2025-09-01T17:49:35","slug":"6-color-palette-generator","status":"publish","type":"post","link":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/","title":{"rendered":"6 Color Palette Generator"},"content":{"rendered":"\t\t<div data-elementor-type=\"container\" data-elementor-id=\"8309978\" class=\"elementor elementor-8309978\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23691a2c e-flex e-con-boxed e-con e-parent\" data-id=\"23691a2c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-37c3711c elementor-widget elementor-widget-html\" data-id=\"37c3711c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n    \/* --- Styles Adapted from Your Code --- *\/\r\n    .color-palette-app {\r\n        width: 100%;\r\n        max-width: 1280px;\r\n        margin: 0 auto;\r\n        padding: 60px 0 0;\r\n        background: transparent;\r\n        overflow: visible;\r\n        position: relative;\r\n    }\r\n\r\n    .format-btn-container {\r\n        display: flex;\r\n        justify-content: center;\r\n        align-items: center;\r\n        margin-top: 30px;\r\n    }\r\n\r\n    .format-btn {\r\n        background-color: #000;\r\n        color: white;\r\n        border: none;\r\n        border-radius: 4px;\r\n        padding: 12px 20px;\r\n        cursor: pointer;\r\n        font-size: 1.125rem;\r\n        font-weight: 500;\r\n        transition: all 0.2s;\r\n        min-width: 15rem;\r\n        text-align: center;\r\n        box-shadow: 0 4px 15px rgba(0,0,0,0.1);\r\n    }\r\n\r\n    .format-btn:is(:hover, :focus, :focus-visible, :active){\r\n        background-color: #545454;\r\n    }\r\n\r\n    .copy-btn {\r\n        background-color: rgba(255, 255, 255, 0.8);\r\n        color: black;\r\n        border: 1px solid #ddd;\r\n        padding: 6px 10px;\r\n        border-radius: 4px;\r\n        cursor: pointer;\r\n        font-size: 13px;\r\n        display: flex;\r\n        align-items: center;\r\n        gap: 6px;\r\n        transition: background-color 0.2s;\r\n    }\r\n\r\n    .copy-btn:is(:hover, :focus, :focus-visible) {\r\n        background-color: #f6f6f6 !important;\r\n    }\r\n\r\n    .section-header {\r\n        background-color: #05047E;\r\n        color: white;\r\n        padding: 12px 20px;\r\n        font-family: 'DM Sans', sans-serif;\r\n        font-weight: 400;\r\n        font-size: 1.125rem;\r\n        border-top-left-radius: 8px;\r\n        border-top-right-radius: 8px;\r\n        text-align: center;\r\n    }\r\n    \r\n    .main-content {\r\n        display: grid;\r\n        grid-template-columns: repeat(6, 1fr);\r\n        background: white;\r\n        border: 1.5px solid #EBEBEB;\r\n        border-top: none;\r\n        border-bottom-left-radius: 8px;\r\n        border-bottom-right-radius: 8px;\r\n        overflow: hidden;\r\n        box-shadow: 0 0 20px rgba(0,0,0,0.05);\r\n    }\r\n\r\n    \/* --- New Styles for this Tool --- *\/\r\n    .color-swatch {\r\n        min-height: 250px;\r\n        display: flex;\r\n        flex-direction: column;\r\n        transition: transform 0.2s ease-in-out;\r\n    }\r\n\r\n    .color-display {\r\n        flex-grow: 1;\r\n        position: relative;\r\n    }\r\n    \r\n    .color-display .lock-icon {\r\n        position: absolute;\r\n        top: 10px;\r\n        right: 10px;\r\n        width: 24px;\r\n        height: 24px;\r\n        cursor: pointer;\r\n        opacity: 0.5;\r\n        transition: opacity 0.2s;\r\n    }\r\n\r\n    .color-display .lock-icon:hover {\r\n        opacity: 1;\r\n    }\r\n\r\n    .color-swatch.locked .lock-icon {\r\n        opacity: 1;\r\n    }\r\n\r\n    .color-info {\r\n        padding: 15px;\r\n        background-color: #f8f9fa;\r\n        border-top: 1px solid #EBEBEB;\r\n        display: flex;\r\n        justify-content: space-between;\r\n        align-items: center;\r\n        flex-wrap: wrap;\r\n        gap: 10px;\r\n    }\r\n\r\n    .hex-code {\r\n        font-family: 'Courier New', monospace;\r\n        font-weight: bold;\r\n        font-size: 1rem;\r\n        color: #333;\r\n    }\r\n    \r\n    .success-message {\r\n        position: fixed;\r\n        bottom: 20px;\r\n        left: 50%;\r\n        transform: translate(-50%, 100%);\r\n        background-color: #05047E; \/* Matched header color *\/\r\n        color: white;\r\n        padding: 12px 20px;\r\n        border-radius: 4px;\r\n        font-size: 14px;\r\n        opacity: 0;\r\n        transition: all 0.4s ease;\r\n        z-index: 1000;\r\n        box-shadow: 0 4px 15px rgba(0,0,0,0.2);\r\n    }\r\n\r\n    .success-message.show {\r\n        opacity: 1;\r\n        transform: translate(-50%, 0);\r\n    }\r\n\r\n    \/* --- Responsive Adjustments --- *\/\r\n    @media (max-width: 1024px) {\r\n        .main-content {\r\n            grid-template-columns: repeat(3, 1fr);\r\n        }\r\n    }\r\n    \r\n    @media (max-width: 768px) {\r\n        .color-palette-app {\r\n            padding: 30px 15px 0;\r\n        }\r\n        .main-content {\r\n            grid-template-columns: repeat(2, 1fr);\r\n        }\r\n        .format-btn {\r\n            width: 100%;\r\n            min-width: unset;\r\n        }\r\n    }\r\n\r\n<\/style>\r\n\r\n<div class=\"color-palette-app\">\r\n    <div class=\"section-header\">\r\n        <h2>6 Color Palette Generator<\/h2>\r\n    <\/div>\r\n\r\n    <div class=\"main-content\" id=\"paletteContainer\">\r\n        <!-- Color swatches will be generated by JS and inserted here -->\r\n    <\/div>\r\n\r\n    <div class=\"format-btn-container\">\r\n        <button class=\"format-btn\" id=\"generateBtn\">Generate New Palette<\/button>\r\n    <\/div>\r\n\r\n    <div id=\"copySuccessMessage\" class=\"success-message\">Color copied to clipboard!<\/div>\r\n<\/div>\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', () => {\r\n        const generateBtn = document.getElementById('generateBtn');\r\n        const paletteContainer = document.getElementById('paletteContainer');\r\n        const successMessage = document.getElementById('copySuccessMessage');\r\n        const totalSwatches = 6;\r\n\r\n        \/\/ --- Core Functions ---\r\n\r\n        const generateRandomHex = () => {\r\n            \/\/ Generates a random 6-digit hex color code.\r\n            const randomColor = '#' + Math.floor(Math.random() * 16777215).toString(16).padStart(6, '0');\r\n            return randomColor.toUpperCase();\r\n        };\r\n\r\n        const generatePalette = () => {\r\n            const swatches = paletteContainer.querySelectorAll('.color-swatch');\r\n            swatches.forEach(swatch => {\r\n                \/\/ Only generate a new color if the swatch is not locked\r\n                if (swatch.classList.contains('locked')) {\r\n                    return;\r\n                }\r\n\r\n                const newColor = generateRandomHex();\r\n                const colorDisplay = swatch.querySelector('.color-display');\r\n                const hexCodeSpan = swatch.querySelector('.hex-code');\r\n                const copyBtn = swatch.querySelector('.copy-btn');\r\n\r\n                colorDisplay.style.backgroundColor = newColor;\r\n                hexCodeSpan.textContent = newColor;\r\n                copyBtn.dataset.color = newColor; \/\/ Store color in data attribute for easy access\r\n            });\r\n        };\r\n\r\n        const copyToClipboard = (text) => {\r\n            if (navigator.clipboard) {\r\n                navigator.clipboard.writeText(text).then(() => {\r\n                    showSuccessMessage(`Copied ${text} to clipboard!`);\r\n                }).catch(err => {\r\n                    console.error('Failed to copy text: ', err);\r\n                    alert('Failed to copy color.');\r\n                });\r\n            } else {\r\n                \/\/ Fallback for older browsers\r\n                const textArea = document.createElement(\"textarea\");\r\n                textArea.value = text;\r\n                document.body.appendChild(textArea);\r\n                textArea.select();\r\n                document.execCommand('copy');\r\n                document.body.removeChild(textArea);\r\n                showSuccessMessage(`Copied ${text} to clipboard!`);\r\n            }\r\n        };\r\n\r\n        const showSuccessMessage = (message) => {\r\n            successMessage.textContent = message;\r\n            successMessage.classList.add('show');\r\n            setTimeout(() => {\r\n                successMessage.classList.remove('show');\r\n            }, 2000); \/\/ Message disappears after 2 seconds\r\n        };\r\n\r\n        const toggleLock = (event) => {\r\n            const lockIcon = event.target;\r\n            const swatch = lockIcon.closest('.color-swatch');\r\n            swatch.classList.toggle('locked');\r\n\r\n            \/\/ Update icon appearance based on locked state\r\n            if (swatch.classList.contains('locked')) {\r\n                lockIcon.innerHTML = `\r\n                    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"><\/rect><path d=\"M7 11V7a5 5 0 0 1 10 0v4\"><\/path><\/svg>\r\n                `;\r\n            } else {\r\n                lockIcon.innerHTML = `\r\n                    <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"><\/rect><path d=\"M7 11V7a5 5 0 0 1 9.9-1\"><\/path><\/svg>\r\n                `;\r\n            }\r\n        };\r\n\r\n\r\n        \/\/ --- Initial Setup ---\r\n\r\n        const createInitialSwatches = () => {\r\n            paletteContainer.innerHTML = ''; \/\/ Clear any existing content\r\n            for (let i = 0; i < totalSwatches; i++) {\r\n                const swatchHTML = `\r\n                    <div class=\"color-swatch\">\r\n                        <div class=\"color-display\">\r\n                            <div class=\"lock-icon\" title=\"Lock\/Unlock color\">\r\n                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><rect x=\"3\" y=\"11\" width=\"18\" height=\"11\" rx=\"2\" ry=\"2\"><\/rect><path d=\"M7 11V7a5 5 0 0 1 9.9-1\"><\/path><\/svg>\r\n                            <\/div>\r\n                        <\/div>\r\n                        <div class=\"color-info\">\r\n                            <span class=\"hex-code\">#000000<\/span>\r\n                            <button class=\"copy-btn\">\r\n                                <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"><\/path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"><\/rect><\/svg>\r\n                                Copy\r\n                            <\/button>\r\n                        <\/div>\r\n                    <\/div>\r\n                `;\r\n                paletteContainer.insertAdjacentHTML('beforeend', swatchHTML);\r\n            }\r\n        };\r\n\r\n\r\n        \/\/ --- Event Listeners ---\r\n        \r\n        generateBtn.addEventListener('click', generatePalette);\r\n        \r\n        \/\/ Use event delegation for copy and lock buttons for efficiency\r\n        paletteContainer.addEventListener('click', (event) => {\r\n            const copyBtn = event.target.closest('.copy-btn');\r\n            if (copyBtn) {\r\n                copyToClipboard(copyBtn.dataset.color);\r\n                return;\r\n            }\r\n\r\n            const lockIcon = event.target.closest('.lock-icon');\r\n            if(lockIcon) {\r\n                toggleLock(event);\r\n            }\r\n        });\r\n\r\n        \/\/ Key press listener for spacebar to generate new palette\r\n        document.body.addEventListener('keyup', (event) => {\r\n            if (event.code === 'Space' && event.target === document.body) {\r\n                event.preventDefault(); \/\/ Prevent page from scrolling\r\n                generatePalette();\r\n            }\r\n        });\r\n\r\n\r\n        \/\/ --- Initialize the Tool ---\r\n\r\n        createInitialSwatches();\r\n        generatePalette();\r\n    });\r\n<\/script>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[22],"tags":[21],"class_list":["post-8309981","post","type-post","status-publish","format-standard","hentry","category-tools","tag-html-css-tools"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>6 Color Palette Generator<\/title>\n<meta name=\"description\" content=\"Generate stunning 6 color palettes instantly with our intuitive and free online tool. Perfect for web design, branding, and graphic arts. Explore harmony rules and get HEX codes easily\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"6 Color Palette Generator\" \/>\n<meta property=\"og:description\" content=\"Generate stunning 6 color palettes instantly with our intuitive and free online tool. Perfect for web design, branding, and graphic arts. Explore harmony rules and get HEX codes easily\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\" \/>\n<meta property=\"og:site_name\" content=\"Tools\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-01T17:49:35+00:00\" \/>\n<meta name=\"author\" content=\"liz@148.red\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"liz@148.red\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\"},\"author\":{\"name\":\"liz@148.red\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"headline\":\"6 Color Palette Generator\",\"datePublished\":\"2025-09-01T17:49:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\"},\"wordCount\":5,\"keywords\":[\"Html-Css-tools\"],\"articleSection\":[\"tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\",\"url\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\",\"name\":\"6 Color Palette Generator\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/#website\"},\"datePublished\":\"2025-09-01T17:49:35+00:00\",\"author\":{\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"description\":\"Generate stunning 6 color palettes instantly with our intuitive and free online tool. Perfect for web design, branding, and graphic arts. Explore harmony rules and get HEX codes easily\",\"breadcrumb\":{\"@id\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/elementor.com\/tools\/6-color-palette-generator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/elementor.com\/tools\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"6 Color Palette Generator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/elementor.com\/tools\/#website\",\"url\":\"https:\/\/elementor.com\/tools\/\",\"name\":\"Tools\",\"description\":\"Just another Elementor hosted website ;)\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/elementor.com\/tools\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\",\"name\":\"liz@148.red\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g\",\"caption\":\"liz@148.red\"},\"url\":\"https:\/\/elementor.com\/tools\/author\/liz148-red\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"6 Color Palette Generator","description":"Generate stunning 6 color palettes instantly with our intuitive and free online tool. Perfect for web design, branding, and graphic arts. Explore harmony rules and get HEX codes easily","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/","og_locale":"en_US","og_type":"article","og_title":"6 Color Palette Generator","og_description":"Generate stunning 6 color palettes instantly with our intuitive and free online tool. Perfect for web design, branding, and graphic arts. Explore harmony rules and get HEX codes easily","og_url":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/","og_site_name":"Tools","article_published_time":"2025-09-01T17:49:35+00:00","author":"liz@148.red","twitter_card":"summary_large_image","twitter_misc":{"Written by":"liz@148.red","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/#article","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/"},"author":{"name":"liz@148.red","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"headline":"6 Color Palette Generator","datePublished":"2025-09-01T17:49:35+00:00","mainEntityOfPage":{"@id":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/"},"wordCount":5,"keywords":["Html-Css-tools"],"articleSection":["tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/","url":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/","name":"6 Color Palette Generator","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/#website"},"datePublished":"2025-09-01T17:49:35+00:00","author":{"@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"description":"Generate stunning 6 color palettes instantly with our intuitive and free online tool. Perfect for web design, branding, and graphic arts. Explore harmony rules and get HEX codes easily","breadcrumb":{"@id":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elementor.com\/tools\/6-color-palette-generator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elementor.com\/tools\/6-color-palette-generator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elementor.com\/tools\/"},{"@type":"ListItem","position":2,"name":"6 Color Palette Generator"}]},{"@type":"WebSite","@id":"https:\/\/elementor.com\/tools\/#website","url":"https:\/\/elementor.com\/tools\/","name":"Tools","description":"Just another Elementor hosted website ;)","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elementor.com\/tools\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac","name":"liz@148.red","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/63b900d3310bd1ed40162fb27f016e9920ae66fa5be07be5153344329ef7d9d2?s=96&d=mm&r=g","caption":"liz@148.red"},"url":"https:\/\/elementor.com\/tools\/author\/liz148-red\/"}]}},"_links":{"self":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8309981","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/comments?post=8309981"}],"version-history":[{"count":1,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8309981\/revisions"}],"predecessor-version":[{"id":8309982,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8309981\/revisions\/8309982"}],"wp:attachment":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/media?parent=8309981"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/categories?post=8309981"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/tags?post=8309981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}