{"id":88869,"date":"2017-07-08T14:37:59","date_gmt":"2017-07-08T14:37:59","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=88869"},"modified":"2024-03-27T13:00:15","modified_gmt":"2024-03-27T13:00:15","slug":"modify-less-file-variables-value-dynamically-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/","title":{"rendered":"How to modify less file variable&#8217;s value dynamically in magento2"},"content":{"rendered":"\n<p>How to modify less file variable&#8217;s value dynamically in magento2 <\/p>\n\n\n\n<p>In this article we will learn how to modify variables of \u00a0&#8220;<strong>less<\/strong>&#8221; \u00a0in magento2. I assume you know how to create less file in theme. I have placed my <strong>_extend.less<\/strong> file under <strong>app\/design\/frontend\/Company\/theme_name\/web\/css\/source\/<\/strong> which has following code :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">@themeColor: #291a2d; \/\/variable\n@color-text: #cdaa6a; \/\/variable\n.btn-primary{\n    background-color: @themeColor;\n    color: @color-text;\n}<\/pre>\n\n\n\n<p>Now if you want to change above variables value dynamically. So, to do this, create a &#8220;<strong>around plugin<\/strong>&#8221; for method <strong>processContent()<\/strong> of Class <strong>Magento\/Framework\/Css\/PreProcessor\/Adapter\/Less\/Processor.php<\/strong> . Now in that plugin initialize your less variables array. For e.g. :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">$array = &#091;];\n$array&#091;&#039;themeColor&#039;] = &#039;#ffffff&#039;;\n$array&#091;&#039;color-text&#039;] =&#039;#000000&#039;;\n.....\n$parser-&gt;parseFile($tmpFilePath, &#039;&#039;); \/\/just after this line of code write below line of code\n$parser-&gt;ModifyVars($array); \/\/ this code is modifying variables<\/pre>\n\n\n\n<p><strong>ModifyVars<\/strong> function will modify your less variable&#8217;s value.<\/p>\n\n\n\n<p>Now your less variables value will be modified whenever you run static content deploy.<\/p>\n\n\n\n<p>That&#8217;s all in this article, hope it will help you to modify less variables value dynamically. Try the above code and if you have any issue just comment below. \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How to modify less file variable&#8217;s value dynamically in magento2 In this article we will learn how to modify variables of \u00a0&#8220;less&#8221; \u00a0in magento2. I assume you know how to create less file in theme. I have placed my _extend.less file under app\/design\/frontend\/Company\/theme_name\/web\/css\/source\/ which has following code : Now if you want to change above <a href=\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":103,"featured_media":80140,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[1896,4231,4376,4192],"class_list":["post-88869","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento2","tag-less","tag-use-of-less-in-magento-2","tag-use-of-less-in-magento-2-template-and-modules","tag-what-is-less"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to modify less file variable&#039;s value dynamically in magento2 - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to modify less file variable&#039;s value dynamically in magento2 - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"How to modify less file variable&#8217;s value dynamically in magento2 In this article we will learn how to modify variables of \u00a0&#8220;less&#8221; \u00a0in magento2. I assume you know how to create less file in theme. I have placed my _extend.less file under app\/design\/frontend\/Company\/theme_name\/web\/css\/source\/ which has following code : Now if you want to change above [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-07-08T14:37:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-27T13:00:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Pranjali Goel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pranjali Goel\" \/>\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:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\"},\"author\":{\"name\":\"Pranjali Goel\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692\"},\"headline\":\"How to modify less file variable&#8217;s value dynamically in magento2\",\"datePublished\":\"2017-07-08T14:37:59+00:00\",\"dateModified\":\"2024-03-27T13:00:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\"},\"wordCount\":160,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"keywords\":[\"less\",\"Use of LESS in magento 2\",\"Use of LESS in magento 2 template and modules\",\"What is Less ?\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\",\"name\":\"How to modify less file variable's value dynamically in magento2 - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"datePublished\":\"2017-07-08T14:37:59+00:00\",\"dateModified\":\"2024-03-27T13:00:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to modify less file variable&#8217;s value dynamically in magento2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692\",\"name\":\"Pranjali Goel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Pranjali Goel\"},\"description\":\"Believes in simple lifestyle and follow a simple logic to make herself better than yesterday.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/pranjali968\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to modify less file variable's value dynamically in magento2 - Webkul Blog","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:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/","og_locale":"en_US","og_type":"article","og_title":"How to modify less file variable's value dynamically in magento2 - Webkul Blog","og_description":"How to modify less file variable&#8217;s value dynamically in magento2 In this article we will learn how to modify variables of \u00a0&#8220;less&#8221; \u00a0in magento2. I assume you know how to create less file in theme. I have placed my _extend.less file under app\/design\/frontend\/Company\/theme_name\/web\/css\/source\/ which has following code : Now if you want to change above [...]","og_url":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-07-08T14:37:59+00:00","article_modified_time":"2024-03-27T13:00:15+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","type":"image\/png"}],"author":"Pranjali Goel","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Pranjali Goel","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/"},"author":{"name":"Pranjali Goel","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692"},"headline":"How to modify less file variable&#8217;s value dynamically in magento2","datePublished":"2017-07-08T14:37:59+00:00","dateModified":"2024-03-27T13:00:15+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/"},"wordCount":160,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","keywords":["less","Use of LESS in magento 2","Use of LESS in magento 2 template and modules","What is Less ?"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/","url":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/","name":"How to modify less file variable's value dynamically in magento2 - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","datePublished":"2017-07-08T14:37:59+00:00","dateModified":"2024-03-27T13:00:15+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/04\/Magneto-Code-Snippet.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/modify-less-file-variables-value-dynamically-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to modify less file variable&#8217;s value dynamically in magento2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692","name":"Pranjali Goel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Pranjali Goel"},"description":"Believes in simple lifestyle and follow a simple logic to make herself better than yesterday.","url":"https:\/\/webkul.com\/blog\/author\/pranjali968\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88869","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/103"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=88869"}],"version-history":[{"count":3,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88869\/revisions"}],"predecessor-version":[{"id":429873,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/88869\/revisions\/429873"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/80140"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=88869"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=88869"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=88869"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}