{"id":8310172,"date":"2025-09-04T09:16:54","date_gmt":"2025-09-04T06:16:54","guid":{"rendered":"https:\/\/elementor.com\/tools\/?p=8310172"},"modified":"2025-09-04T09:23:34","modified_gmt":"2025-09-04T06:23:34","slug":"material-color-palette-generator","status":"publish","type":"post","link":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/","title":{"rendered":"Material Color Palette Generator"},"content":{"rendered":"\t\t<div data-elementor-type=\"container\" data-elementor-id=\"8310171\" class=\"elementor elementor-8310171\" 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 Provided Code --- *\/\r\n    .material-palette-app {\r\n        width: 100%;\r\n        max-width: 1280px;\r\n        margin: 0 auto;\r\n        padding: 40px 0 0;\r\n        background: transparent;\r\n        overflow: visible;\r\n        position: relative;\r\n    }\r\n\r\n    .copy-btn {\r\n        background-color: rgba(255, 255, 255, 0.7);\r\n        color: black;\r\n        border: none;\r\n        padding: 6px 12px;\r\n        border-radius: 4px;\r\n        cursor: pointer;\r\n        font-size: 13px;\r\n        font-family: 'DM Sans', sans-serif;\r\n        display: flex;\r\n        align-items: center;\r\n        gap: 6px;\r\n        transition: background-color 0.2s;\r\n        box-shadow: 0 1px 3px rgba(0,0,0,0.1);\r\n    }\r\n\r\n    .copy-btn:is(:hover, :focus, :focus-visible) {\r\n        background-color: #fff !important;\r\n    }\r\n\r\n    .format-btn {\r\n        background-color: #000;\r\n        color: white;\r\n        border: none;\r\n        padding: 12px 24px;\r\n        cursor: pointer;\r\n        font-size: 1.1rem;\r\n        font-weight: 500;\r\n        transition: all 0.2s;\r\n        border-radius: 5px;\r\n        min-width: 12rem;\r\n        text-align: center;\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    .success-message {\r\n        position: fixed;\r\n        bottom: 20px;\r\n        left: 50%;\r\n        transform: translateX(-50%);\r\n        background-color: #28a745;\r\n        color: white;\r\n        padding: 12px 24px;\r\n        border-radius: 4px;\r\n        font-size: 14px;\r\n        opacity: 0;\r\n        transition: all 0.3s 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%, -20px);\r\n    }\r\n\r\n    \/* --- New Styles for the Palette Generator --- *\/\r\n    .controls-section {\r\n        background: white;\r\n        border: 1.5px solid #EBEBEB;\r\n        border-radius: 8px;\r\n        overflow: hidden;\r\n        margin-bottom: 30px;\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    }\r\n\r\n    .controls-content {\r\n        display: flex;\r\n        align-items: center;\r\n        justify-content: center;\r\n        gap: 20px;\r\n        padding: 25px;\r\n        flex-wrap: wrap;\r\n    }\r\n\r\n    .color-input-group {\r\n        display: flex;\r\n        align-items: center;\r\n        gap: 10px;\r\n    }\r\n\r\n    #colorPicker {\r\n        -webkit-appearance: none;\r\n        -moz-appearance: none;\r\n        appearance: none;\r\n        width: 50px;\r\n        height: 50px;\r\n        background-color: transparent;\r\n        border: none;\r\n        cursor: pointer;\r\n        border: 1px solid #ddd;\r\n        border-radius: 8px;\r\n    }\r\n    #colorPicker::-webkit-color-swatch {\r\n        border-radius: 8px;\r\n        border: none;\r\n    }\r\n    #colorPicker::-moz-color-swatch {\r\n        border-radius: 8px;\r\n        border: none;\r\n    }\r\n\r\n    #hexInput {\r\n        padding: 12px;\r\n        font-family: 'Courier New', monospace;\r\n        font-size: 1.1rem;\r\n        border: 1.5px solid #EBEBEB;\r\n        border-radius: 5px;\r\n        width: 120px;\r\n        text-align: center;\r\n        text-transform: uppercase;\r\n    }\r\n    \r\n    #palette-container {\r\n        display: grid;\r\n        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\r\n        gap: 1px;\r\n        background-color: #EBEBEB;\r\n        border: 1.5px solid #EBEBEB;\r\n        border-radius: 8px;\r\n        overflow: hidden;\r\n    }\r\n\r\n    .color-swatch {\r\n        background-color: #fff;\r\n        padding: 20px;\r\n        min-height: 120px;\r\n        display: flex;\r\n        flex-direction: column;\r\n        justify-content: space-between;\r\n        transition: transform 0.2s ease-in-out;\r\n    }\r\n    \r\n    .color-swatch:hover {\r\n        transform: scale(1.02);\r\n        z-index: 10;\r\n        box-shadow: 0 5px 15px rgba(0,0,0,0.1);\r\n    }\r\n    \r\n    .swatch-info {\r\n        display: flex;\r\n        justify-content: space-between;\r\n        align-items: center;\r\n        font-family: 'DM Sans', sans-serif;\r\n    }\r\n    \r\n    .swatch-level {\r\n        font-weight: 700;\r\n        font-size: 1rem;\r\n    }\r\n    \r\n    .swatch-hex {\r\n        font-family: 'Courier New', monospace;\r\n        font-size: 0.9rem;\r\n        opacity: 0.8;\r\n    }\r\n\r\n    .swatch-actions {\r\n        margin-top: 15px;\r\n        display: flex;\r\n        justify-content: flex-end;\r\n    }\r\n    \r\n    @media (max-width: 768px) {\r\n        .controls-content {\r\n            flex-direction: column;\r\n            gap: 25px;\r\n        }\r\n        .format-btn {\r\n            width: 100%;\r\n        }\r\n    }\r\n<\/style>\r\n\r\n<div class=\"material-palette-app\">\r\n    <!-- Controls Section -->\r\n    <div class=\"controls-section\">\r\n        <div class=\"section-header\">Generator Controls<\/div>\r\n        <div class=\"controls-content\">\r\n            <div class=\"color-input-group\">\r\n                <input type=\"color\" id=\"colorPicker\" value=\"#3f51b5\">\r\n                <input type=\"text\" id=\"hexInput\" value=\"#3f51b5\">\r\n            <\/div>\r\n            <button id=\"generatePaletteBtn\" class=\"format-btn\">Generate Palette<\/button>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <!-- Palette Output -->\r\n    <div class=\"palette-output-section\">\r\n        <div id=\"palette-container\">\r\n            <!-- Color swatches will be generated here by JavaScript -->\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <!-- Success Message For Copying -->\r\n    <div id=\"successMessage\" class=\"success-message\">Color copied to clipboard!<\/div>\r\n<\/div>\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', () => {\r\n        const colorPicker = document.getElementById('colorPicker');\r\n        const hexInput = document.getElementById('hexInput');\r\n        const generateBtn = document.getElementById('generatePaletteBtn');\r\n        const paletteContainer = document.getElementById('palette-container');\r\n        const successMessage = document.getElementById('successMessage');\r\n\r\n        \/\/ Material Design shade levels\r\n        const shadeLevels = [50, 100, 200, 300, 400, 500, 600, 700, 800, 900];\r\n        \/\/ Corresponding lightness values (approximate) for the shades\r\n        const lightnessMap = {\r\n            50: 0.95, 100: 0.88, 200: 0.78, 300: 0.65, 400: 0.55,\r\n            500: 0.45, 600: 0.40, 700: 0.35, 800: 0.30, 900: 0.22\r\n        };\r\n\r\n        \/\/ --- Event Listeners ---\r\n        generateBtn.addEventListener('click', generatePalette);\r\n        \r\n        colorPicker.addEventListener('input', () => {\r\n            hexInput.value = colorPicker.value;\r\n        });\r\n\r\n        hexInput.addEventListener('input', () => {\r\n            if (\/^#[0-9A-F]{6}$\/i.test(hexInput.value)) {\r\n                colorPicker.value = hexInput.value;\r\n            }\r\n        });\r\n        \r\n        \/\/ Event delegation for copy buttons\r\n        paletteContainer.addEventListener('click', (e) => {\r\n            const copyButton = e.target.closest('.copy-btn');\r\n            if (copyButton) {\r\n                const hexToCopy = copyButton.dataset.hex;\r\n                copyToClipboard(hexToCopy);\r\n            }\r\n        });\r\n\r\n        \/\/ --- Core Functions ---\r\n        function generatePalette() {\r\n            const baseColor = hexInput.value;\r\n            if (!\/^#[0-9A-F]{6}$\/i.test(baseColor)) {\r\n                alert(\"Please enter a valid hex color (e.g., #3f51b5)\");\r\n                return;\r\n            }\r\n\r\n            paletteContainer.innerHTML = ''; \/\/ Clear previous palette\r\n\r\n            const baseHsl = hexToHsl(baseColor);\r\n            \r\n            shadeLevels.forEach(level => {\r\n                const newLightness = lightnessMap[level];\r\n                \r\n                \/\/ Adjust saturation: less saturated for very light\/dark colors\r\n                let newSaturation = baseHsl.s;\r\n                if (newLightness > 0.85) newSaturation *= 0.7;\r\n                if (newLightness < 0.25) newSaturation *= 0.9;\r\n                newSaturation = Math.min(1, newSaturation);\r\n                \r\n                const shadeHsl = { h: baseHsl.h, s: newSaturation, l: newLightness };\r\n                const shadeHex = hslToHex(shadeHsl);\r\n                \r\n                const textColor = newLightness > 0.6 ? '#000000' : '#FFFFFF';\r\n                \r\n                const swatch = `\r\n                    <div class=\"color-swatch\" style=\"background-color: ${shadeHex}; color: ${textColor};\">\r\n                        <div class=\"swatch-info\">\r\n                            <span class=\"swatch-level\">${level}<\/span>\r\n                            <span class=\"swatch-hex\">${shadeHex}<\/span>\r\n                        <\/div>\r\n                        <div class=\"swatch-actions\">\r\n                            <button class=\"copy-btn\" data-hex=\"${shadeHex}\">\r\n                                <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"16\" height=\"16\" fill=\"currentColor\" viewBox=\"0 0 16 16\">\r\n                                  <path d=\"M4 1.5H3a2 2 0 0 0-2 2v8.5A1.5 1.5 0 0 0 2.5 14h8a1.5 1.5 0 0 0 1.5-1.5v-2a.5.5 0 0 0-1 0v2a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-8.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1z\"\/>\r\n                                  <path d=\"M10 .5a.5.5 0 0 0-.5.5V3h-3a.5.5 0 0 0 0 1h3v2.5a.5.5 0 0 0 1 0V4h3a.5.5 0 0 0 0-1h-3V1a.5.5 0 0 0-.5-.5z\"\/>\r\n                                  <path d=\"M.5 4a.5.5 0 0 0 0 1h1.5v1a.5.5 0 0 0 1 0V5h1a.5.5 0 0 0 0-1h-1V3a.5.5 0 0 0-1 0v1H.5z\"\/>\r\n                                  <path d=\"M12.5 1A1.5 1.5 0 0 0 11 2.5v1.086a.5.5 0 0 0 1 0V2.5a.5.5 0 0 1 .5-.5h1.086a.5.5 0 0 0 0-1H12.5zM5 11.5A1.5 1.5 0 0 0 6.5 13h1.086a.5.5 0 0 0 0-1H6.5a.5.5 0 0 1-.5-.5v-1.086a.5.5 0 0 0-1 0V11.5z\"\/>\r\n                                <\/svg>\r\n                                Copy\r\n                            <\/button>\r\n                        <\/div>\r\n                    <\/div>\r\n                `;\r\n                paletteContainer.insertAdjacentHTML('beforeend', swatch);\r\n            });\r\n        }\r\n        \r\n        function copyToClipboard(text) {\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: ', err);\r\n            });\r\n        }\r\n        \r\n        let messageTimeout;\r\n        function showSuccessMessage(message) {\r\n            clearTimeout(messageTimeout);\r\n            successMessage.textContent = message;\r\n            successMessage.classList.add('show');\r\n            messageTimeout = setTimeout(() => {\r\n                successMessage.classList.remove('show');\r\n            }, 2500);\r\n        }\r\n\r\n        \/\/ --- Color Conversion Utilities ---\r\n        function hexToHsl(hex) {\r\n            let r = 0, g = 0, b = 0;\r\n            if (hex.length == 4) {\r\n                r = parseInt(hex[1] + hex[1], 16);\r\n                g = parseInt(hex[2] + hex[2], 16);\r\n                b = parseInt(hex[3] + hex[3], 16);\r\n            } else if (hex.length == 7) {\r\n                r = parseInt(hex[1] + hex[2], 16);\r\n                g = parseInt(hex[3] + hex[4], 16);\r\n                b = parseInt(hex[5] + hex[6], 16);\r\n            }\r\n            \r\n            r \/= 255; g \/= 255; b \/= 255;\r\n            let max = Math.max(r, g, b), min = Math.min(r, g, b);\r\n            let h, s, l = (max + min) \/ 2;\r\n\r\n            if (max == min) {\r\n                h = s = 0;\r\n            } else {\r\n                let d = max - min;\r\n                s = l > 0.5 ? d \/ (2 - max - min) : d \/ (max + min);\r\n                switch (max) {\r\n                    case r: h = (g - b) \/ d + (g < b ? 6 : 0); break;\r\n                    case g: h = (b - r) \/ d + 2; break;\r\n                    case b: h = (r - g) \/ d + 4; break;\r\n                }\r\n                h \/= 6;\r\n            }\r\n            return { h, s, l };\r\n        }\r\n\r\n        function hslToHex(hsl) {\r\n            let { h, s, l } = hsl;\r\n            let r, g, b;\r\n\r\n            if (s == 0) {\r\n                r = g = b = l;\r\n            } else {\r\n                const hue2rgb = (p, q, t) => {\r\n                    if (t < 0) t += 1;\r\n                    if (t > 1) t -= 1;\r\n                    if (t < 1 \/ 6) return p + (q - p) * 6 * t;\r\n                    if (t < 1 \/ 2) return q;\r\n                    if (t < 2 \/ 3) return p + (q - p) * (2 \/ 3 - t) * 6;\r\n                    return p;\r\n                };\r\n                let q = l < 0.5 ? l * (1 + s) : l + s - l * s;\r\n                let p = 2 * l - q;\r\n                r = hue2rgb(p, q, h + 1 \/ 3);\r\n                g = hue2rgb(p, q, h);\r\n                b = hue2rgb(p, q, h - 1 \/ 3);\r\n            }\r\n\r\n            const toHex = x => {\r\n                const hex = Math.round(x * 255).toString(16);\r\n                return hex.length === 1 ? '0' + hex : hex;\r\n            };\r\n            return `#${toHex(r)}${toHex(g)}${toHex(b)}`;\r\n        }\r\n        \r\n        \/\/ Generate initial palette on page load\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-8310172","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>Material Color Palette Generator<\/title>\n<meta name=\"description\" content=\"Generate beautiful and accessible Material Design color palettes in seconds with our intuitive tool. Perfect for Elementor users, designers, and developers.\" \/>\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\/material-color-palette-generator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Material Color Palette Generator\" \/>\n<meta property=\"og:description\" content=\"Generate beautiful and accessible Material Design color palettes in seconds with our intuitive tool. Perfect for Elementor users, designers, and developers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/\" \/>\n<meta property=\"og:site_name\" content=\"Tools\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-04T06:16:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-04T06:23:34+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\/material-color-palette-generator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/\"},\"author\":{\"name\":\"liz@148.red\",\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"headline\":\"Material Color Palette Generator\",\"datePublished\":\"2025-09-04T06:16:54+00:00\",\"dateModified\":\"2025-09-04T06:23:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/\"},\"wordCount\":6,\"keywords\":[\"Html-Css-tools\"],\"articleSection\":[\"tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/\",\"url\":\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/\",\"name\":\"Material Color Palette Generator\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/tools\/#website\"},\"datePublished\":\"2025-09-04T06:16:54+00:00\",\"dateModified\":\"2025-09-04T06:23:34+00:00\",\"author\":{\"@id\":\"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac\"},\"description\":\"Generate beautiful and accessible Material Design color palettes in seconds with our intuitive tool. Perfect for Elementor users, designers, and developers.\",\"breadcrumb\":{\"@id\":\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/elementor.com\/tools\/material-color-palette-generator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/elementor.com\/tools\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Material 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":"Material Color Palette Generator","description":"Generate beautiful and accessible Material Design color palettes in seconds with our intuitive tool. Perfect for Elementor users, designers, and developers.","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\/material-color-palette-generator\/","og_locale":"en_US","og_type":"article","og_title":"Material Color Palette Generator","og_description":"Generate beautiful and accessible Material Design color palettes in seconds with our intuitive tool. Perfect for Elementor users, designers, and developers.","og_url":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/","og_site_name":"Tools","article_published_time":"2025-09-04T06:16:54+00:00","article_modified_time":"2025-09-04T06:23:34+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\/material-color-palette-generator\/#article","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/"},"author":{"name":"liz@148.red","@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"headline":"Material Color Palette Generator","datePublished":"2025-09-04T06:16:54+00:00","dateModified":"2025-09-04T06:23:34+00:00","mainEntityOfPage":{"@id":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/"},"wordCount":6,"keywords":["Html-Css-tools"],"articleSection":["tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/","url":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/","name":"Material Color Palette Generator","isPartOf":{"@id":"https:\/\/elementor.com\/tools\/#website"},"datePublished":"2025-09-04T06:16:54+00:00","dateModified":"2025-09-04T06:23:34+00:00","author":{"@id":"https:\/\/elementor.com\/tools\/#\/schema\/person\/80e8375cb95e6030bc2f897c41c985ac"},"description":"Generate beautiful and accessible Material Design color palettes in seconds with our intuitive tool. Perfect for Elementor users, designers, and developers.","breadcrumb":{"@id":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elementor.com\/tools\/material-color-palette-generator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elementor.com\/tools\/material-color-palette-generator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elementor.com\/tools\/"},{"@type":"ListItem","position":2,"name":"Material 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\/8310172","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=8310172"}],"version-history":[{"count":1,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8310172\/revisions"}],"predecessor-version":[{"id":8310175,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/posts\/8310172\/revisions\/8310175"}],"wp:attachment":[{"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/media?parent=8310172"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/categories?post=8310172"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elementor.com\/tools\/wp-json\/wp\/v2\/tags?post=8310172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}