{"id":1988,"date":"2024-05-02T16:13:00","date_gmt":"2024-05-02T15:13:00","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=1988"},"modified":"2024-05-09T10:18:43","modified_gmt":"2024-05-09T09:18:43","slug":"neumorphism-design","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/","title":{"rendered":"How to Create Neumorphism Effect with CSS"},"content":{"rendered":"\n<p>Neumorphism design, alternatively termed as &#8220;soft UI&#8221; or &#8220;new skeuomorphism,&#8221; represents a design trend that seamlessly integrates elements of skeuomorphism with contemporary minimalism. Its objective is to craft soft, tactile interfaces that not only captivate visually but also intuitively engage users. Throughout this article, we&#8217;ll delve comprehensively into the concept of Neumorphism, exploring its versatile applications across various industries. Additionally, we&#8217;ll provide concrete examples of Neumorphic designs and guide you through the step-by-step process of creating Neumorphic UI elements with insightful code examples.<\/p>\n\n\n\n<p><strong>Introduction to Neumorphism:<\/strong><\/p>\n\n\n\n<p>Neumorphism, characterized by its use of light and shadow to evoke a 3D effect on UI elements, imparts a soft and tactile appearance. Moreover, by employing subtle gradients, shadows, and highlights, it generates depth akin to objects casting shadows on a surface. However, unlike traditional skeuomorphism, which closely mimics real-world objects, Neumorphism emphasizes a futuristic yet familiar aesthetic.<\/p>\n\n\n\n<p><strong>Applications of Neumorphism:<\/strong><\/p>\n\n\n\n<p>Neumorphic design finds applications across various digital platforms, including mobile apps, websites, and desktop applications. Moreover, its soft, inviting appearance makes it particularly suitable for:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>User Interfaces:<\/strong> Neumorphic UI elements enhance the user experience by providing intuitive visual cues and a sense of realism. They are commonly used for buttons, sliders, input fields, cards, and navigation bars.<\/li>\n\n\n\n<li><strong>Productivity Tools:<\/strong> Neumorphism can improve the usability of productivity tools such as task managers, note-taking apps, and project management software by creating visually engaging and easy-to-navigate interfaces.<\/li>\n\n\n\n<li><strong>E-commerce Platforms:<\/strong> Neumorphic design can elevate the shopping experience on e-commerce websites by making product listings, shopping carts, and checkout processes more visually appealing and user-friendly.<\/li>\n\n\n\n<li><strong>Dashboard Design:<\/strong> Neumorphism lends itself well to dashboard design, where it can enhance the readability of data visualizations, charts, graphs, and analytics widgets.<\/li>\n<\/ol>\n\n\n\n<p><strong>Examples of Neumorphism:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Neumorphic Button:<\/strong><\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;button class=\"neumorphic-button\"&gt;Click Me&lt;\/button&gt;<br><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"css\" class=\"language-css\">.neumorphic-button {<br>  background-color: #f0f0f0;<br>  border: none;<br>  border-radius: 10px;<br>  box-shadow: 5px 5px 10px #bfbfbf, -5px -5px 10px #ffffff;<br>  padding: 15px 30px;<br>  font-size: 16px;<br>}<br><\/code><\/pre>\n\n\n\n<p><strong>Below is the Outcome of the button!<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"745\" height=\"255\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140912.png\" alt=\"\" class=\"wp-image-1990\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140912.png 745w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140912-300x103.png 300w\" sizes=\"auto, (max-width: 745px) 100vw, 745px\" \/><\/figure>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li><strong>Neumorphic Card:<\/strong><\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;div class=\"neumorphic-card\"&gt;<br>  &lt;h3&gt;Neumorphic Card&lt;\/h3&gt;<br>  &lt;p&gt;This is a sample neumorphic card.&lt;\/p&gt;<br>&lt;\/div&gt;<br><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"css\" class=\"language-css\">.neumorphic-card {<br>  background-color: #f0f0f0;<br>  border-radius: 15px;<br>  box-shadow: 10px 10px 20px #bfbfbf, -10px -10px 20px #ffffff;<br>  padding: 20px;<br>  width: 300px;<br>}<br><br><br><\/code><\/pre>\n\n\n\n<p><strong>Below is the Outcome of the Card.!<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"250\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140147-1024x250.png\" alt=\"\" class=\"wp-image-1989\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140147-1024x250.png 1024w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140147-300x73.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140147-768x187.png 768w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-140147.png 1247w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li><strong>Neumorphic Input Field:<\/strong><\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;input type=\"text\" class=\"neumorphic-input\" placeholder=\"Enter your name\"&gt;<br><\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"css\" class=\"language-css\">.neumorphic-input {<br>  background-color: #f0f0f0;<br>  border: none;<br>  border-radius: 10px;<br>  box-shadow: inset 5px 5px 10px #bfbfbf, inset -5px -5px 10px #ffffff;<br>  padding: 10px;<br>  font-size: 16px;<br>}<br><\/code><\/pre>\n\n\n\n<p><strong>Below is the Outcome.!<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"493\" height=\"175\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-141251.png\" alt=\"\" class=\"wp-image-1991\" style=\"width:840px;height:auto\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-141251.png 493w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/Screenshot-2024-05-02-141251-300x106.png 300w\" sizes=\"auto, (max-width: 493px) 100vw, 493px\" \/><\/figure>\n\n\n\n<p><strong>4. Neumorphic Login design:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;div class=\"container\"&gt;\n    &lt;h2&gt;Login&lt;\/h2&gt;\n    &lt;form&gt;\n      &lt;div class=\"input-container\"&gt;\n        &lt;input type=\"text\" placeholder=\"Username\" required&gt;\n      &lt;\/div&gt;\n      &lt;div class=\"input-container\"&gt;\n        &lt;input type=\"password\" placeholder=\"Password\" required&gt;\n      &lt;\/div&gt;\n      &lt;button type=\"submit\"&gt;Login&lt;\/button&gt;\n    &lt;\/form&gt;\n  &lt;\/div&gt;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"css\" class=\"language-css\">body {\n  font-family: Arial, sans-serif;\n  background-color: #f0f0f0;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  height: 100vh;\n  margin: 0;\n}\n\n.container {\n  background-color: #f0f0f0;\n  padding: 40px;\n  border-radius: 20px;\n  box-shadow: 10px 10px 20px #b7b7b7, -10px -10px 20px #ffffff;\n}\n\n.container h2 {\n  text-align: center;\n  margin-bottom: 20px;\n}\n\nform {\n  display: flex;\n  flex-direction: column;\n}\n\n.input-container {\n  margin-bottom: 20px;\n}\n\ninput[type=\"text\"],\ninput[type=\"password\"] {\n  padding: 10px;\n  border: none;\n  background-color: #f0f0f0;\n  border-radius: 10px;\n  box-shadow: inset 5px 5px 10px #b7b7b7, inset -5px -5px 10px #ffffff;\n}\n\nbutton {\n  padding: 10px;\n  border: none;\n  background-color: #f0f0f0;\n  border-radius: 10px;\n  box-shadow: 5px 5px 10px #b7b7b7, -5px -5px 10px #ffffff;\n  cursor: pointer;\n}\n\nbutton:hover {\n  background-color: #e0e0e0;\n}<\/code><\/pre>\n\n\n\n<p><strong>Here&#8217;s the full code:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\"&gt;\n&lt;head&gt;\n  &lt;meta charset=\"UTF-8\"&gt;\n  &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n  &lt;title&gt;Login Form&lt;\/title&gt;\n\n  &lt;style&gt;\n    body {\n  font-family: Arial, sans-serif;\n  background-color: #f0f0f0;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  height: 100vh;\n  margin: 0;\n}\n\n.container {\n  background-color: #f0f0f0;\n  padding: 40px;\n  border-radius: 20px;\n  box-shadow: 10px 10px 20px #b7b7b7, -10px -10px 20px #ffffff;\n}\n\n.container h2 {\n  text-align: center;\n  margin-bottom: 20px;\n}\n\nform {\n  display: flex;\n  flex-direction: column;\n}\n\n.input-container {\n  margin-bottom: 20px;\n}\n\ninput[type=\"text\"],\ninput[type=\"password\"] {\n  padding: 10px;\n  border: none;\n  background-color: #f0f0f0;\n  border-radius: 10px;\n  box-shadow: inset 5px 5px 10px #b7b7b7, inset -5px -5px 10px #ffffff;\n}\n\nbutton {\n  padding: 10px;\n  border: none;\n  background-color: #f0f0f0;\n  border-radius: 10px;\n  box-shadow: 5px 5px 10px #b7b7b7, -5px -5px 10px #ffffff;\n  cursor: pointer;\n}\n\nbutton:hover {\n  background-color: #e0e0e0;\n}\n\n  &lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n  &lt;div class=\"container\"&gt;\n    &lt;h2&gt;Login&lt;\/h2&gt;\n    &lt;form&gt;\n      &lt;div class=\"input-container\"&gt;\n        &lt;input type=\"text\" placeholder=\"Username\" required&gt;\n      &lt;\/div&gt;\n      &lt;div class=\"input-container\"&gt;\n        &lt;input type=\"password\" placeholder=\"Password\" required&gt;\n      &lt;\/div&gt;\n      &lt;button type=\"submit\"&gt;Login&lt;\/button&gt;\n    &lt;\/form&gt;\n  &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n\n\n<p><strong>Here&#8217;s the outcome:<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"396\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/login-neu-1024x396.png\" alt=\"\" class=\"wp-image-2018\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/login-neu-1024x396.png 1024w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/login-neu-300x116.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/login-neu-768x297.png 768w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/login-neu.png 1199w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Creating Neumorphism:<\/strong><\/p>\n\n\n\n<p>To create Neumorphic UI elements, follow these general steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Choose Color Palette:<\/strong> Select soft, muted colors for your UI elements to create a subtle contrast between the background and the Neumorphic surfaces.<\/li>\n\n\n\n<li><strong>Apply Shadows:<\/strong> Use box-shadow CSS property to apply shadows that mimic light and depth. Experiment with different shadow intensities and directions to achieve the desired effect.<\/li>\n\n\n\n<li><strong>Add Highlights:<\/strong> Incorporate highlights using lighter shades to simulate light reflecting off the surfaces. These highlights create the illusion of convexity and depth.<\/li>\n\n\n\n<li><strong>Fine-tune Depth:<\/strong> Adjust the depth of the shadows and highlights to achieve a balanced and cohesive Neumorphic appearance. Avoid excessive depth that may result in a cluttered or overwhelming design.<\/li>\n<\/ol>\n\n\n\n<p>By following these steps and experimenting with different design elements, you can create stunning Neumorphic UIs that enhance user engagement and satisfaction.<\/p>\n\n\n\n<p><strong>Conclusion:<\/strong><\/p>\n\n\n\n<p>In summary, Neumorphism design epitomizes a distinctive fusion of realism and minimalism in UI design. Its soft, tactile aesthetics not only enhance visual appeal but also contribute significantly to user-friendliness. Moreover, by comprehending Neumorphism&#8217;s principles and applying them innovatively, designers can create immersive digital experiences that truly captivate users.<\/p>\n\n\n\n<p>Hence, explore the possibilities of Neumorphic design and elevate your UIs to new heights of elegance and functionality. Moreover, With its versatility and aesthetic appeal, Neumorphism is poised to become a staple in the toolkit of UI\/UX designers worldwide.<\/p>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/service-workers-in-javascript-an-in-depth-guide\/\">Service workers in JavaScript<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Neumorphism design, alternatively termed as &#8220;soft UI&#8221; or &#8220;new skeuomorphism,&#8221; represents a design trend that seamlessly integrates elements<\/p>\n","protected":false},"author":3,"featured_media":1992,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[32,98],"tags":[8],"class_list":["post-1988","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cascading-style-sheet","category-softare-development","tag-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Neumorphism Design<\/title>\n<meta name=\"description\" content=\"Discover the beauty of Neumorphism design: a modern take on skeuomorphism and minimalism for stunning user interfaces\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Neumorphism Design\" \/>\n<meta property=\"og:description\" content=\"Discover the beauty of Neumorphism design: a modern take on skeuomorphism and minimalism for stunning user interfaces\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-02T15:13:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-09T09:18:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kene Samuel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/\"},\"author\":{\"name\":\"Kene Samuel\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\"},\"headline\":\"How to Create Neumorphism Effect with CSS\",\"datePublished\":\"2024-05-02T15:13:00+00:00\",\"dateModified\":\"2024-05-09T09:18:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/\"},\"wordCount\":554,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/IMG-20240502-WA0002.jpg\",\"keywords\":[\"programming\"],\"articleSection\":[\"Cascading style sheet\",\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/\",\"name\":\"Neumorphism Design\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/IMG-20240502-WA0002.jpg\",\"datePublished\":\"2024-05-02T15:13:00+00:00\",\"dateModified\":\"2024-05-09T09:18:43+00:00\",\"description\":\"Discover the beauty of Neumorphism design: a modern take on skeuomorphism and minimalism for stunning user interfaces\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/IMG-20240502-WA0002.jpg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/IMG-20240502-WA0002.jpg\",\"width\":1600,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/neumorphism-design\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Create Neumorphism Effect with CSS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\",\"name\":\"Kene Samuel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"caption\":\"Kene Samuel\"},\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/kene\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Neumorphism Design","description":"Discover the beauty of Neumorphism design: a modern take on skeuomorphism and minimalism for stunning user interfaces","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:\/\/codeflarelimited.com\/blog\/neumorphism-design\/","og_locale":"en_US","og_type":"article","og_title":"Neumorphism Design","og_description":"Discover the beauty of Neumorphism design: a modern take on skeuomorphism and minimalism for stunning user interfaces","og_url":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/","article_published_time":"2024-05-02T15:13:00+00:00","article_modified_time":"2024-05-09T09:18:43+00:00","og_image":[{"width":1600,"height":900,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg","type":"image\/jpeg"}],"author":"Kene Samuel","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/"},"author":{"name":"Kene Samuel","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206"},"headline":"How to Create Neumorphism Effect with CSS","datePublished":"2024-05-02T15:13:00+00:00","dateModified":"2024-05-09T09:18:43+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/"},"wordCount":554,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg","keywords":["programming"],"articleSection":["Cascading style sheet","softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/","url":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/","name":"Neumorphism Design","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg","datePublished":"2024-05-02T15:13:00+00:00","dateModified":"2024-05-09T09:18:43+00:00","description":"Discover the beauty of Neumorphism design: a modern take on skeuomorphism and minimalism for stunning user interfaces","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg","width":1600,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/neumorphism-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"How to Create Neumorphism Effect with CSS"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206","name":"Kene Samuel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","caption":"Kene Samuel"},"url":"https:\/\/codeflarelimited.com\/blog\/author\/kene\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/05\/IMG-20240502-WA0002.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1988","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=1988"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1988\/revisions"}],"predecessor-version":[{"id":2019,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/1988\/revisions\/2019"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1992"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=1988"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=1988"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=1988"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}