{"componentChunkName":"component---src-templates-blog-list-template-js","path":"/148","result":{"data":{"allMarkdownRemark":{"edges":[{"node":{"excerpt":"Maven is a project build management software, it means it Let's you define your project dependencies, features, and behaviors. To do this…","fields":{"slug":"/engineering/how-to-use-maven-dependency-in-eclipse/"},"html":"<p>Maven is a project build management software, it means it Let's you define your project dependencies, features, and behaviors. To do this, Maven downloads plugins and dependencies for various online repositories. People who want to share their libraries, develop using Maven and upload the binaries in a repository. In this article, we’ll discuss how to configure and use Maven dependency.</p>\n<p>Prerequisites:</p>\n<ul>\n<li>Eclipse IDE</li>\n<li>Active internet connection</li>\n</ul>\n<p><strong>Install the Maven support for Eclipse (m2e)</strong></p>\n<p>Most Eclipse downloads include the Maven tooling already. If it is missing in your installation, you can install it via the main update of your release via Help > Install New Software. The following listing contains the update site for the Neon release and an update site maintained by the m2e project.</p>\n<ul>\n<li>Neon update site:<br>\n<a href=\"http://download.eclipse.org/releases/neon\">Neon Update</a></li>\n<li>Update site provided by m2e project:<br>\n<a href=\"http://download.eclipse.org/technology/m2e/releases\">Eclipse Downloads</a></li>\n</ul>\n<p>For the usage of Maven for Java projects, you only need the m2e component. For Java web development you also want the m2e-wtp entry.</p>\n<p><strong>Download the Maven index</strong></p>\n<p>By default, the Maven tooling does not download the Maven index for the Eclipse IDE. Via the Maven index, you can search for dependencies, select them and add them to your pom file. To download the index, select Windows > Preferences > Maven and enable the <em>Download repository index updates on startup</em> option.</p>\n<p>After changing this setting, restart Eclipse. This triggers the download of the Maven index. You may want to remove this flag after restarting to avoid network traffic at every start of Eclipse.</p>\n<p><strong>Create Maven project</strong></p>\n<p>Create a new Maven project via File > New > Other… > Maven > Maven Project.</p>\n<p>On the first wizard page, you can select if you want to create a simple project.</p>\n<p>After creating the Maven project, a pom.xml is generated. You can find the file in Project Explorer. A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details used by Maven to build the project. It contains default values for most projects.</p>\n<p>Now, you can add a dependency in pom.xml. For example, if you want to add LoginRadius for Java library/dependency, you can add as follows:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"\" data-index=\"0\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">&lt;dependencies&gt;</span>\n<span class=\"grvsc-line\">    &lt;dependency&gt;</span>\n<span class=\"grvsc-line\">        &lt;groupId&gt;com.loginradius.sdk&lt;/groupId&gt;</span>\n<span class=\"grvsc-line\">        &lt;artifactId&gt;java-sdk&lt;/artifactId&gt;</span>\n<span class=\"grvsc-line\">        &lt;version&gt;11.0.0&lt;/version&gt;</span>\n<span class=\"grvsc-line\">    &lt;/dependency&gt;</span>\n<span class=\"grvsc-line\">    ......</span>\n<span class=\"grvsc-line\">&lt;/dependencies&gt;</span></code></pre>\n<p>You should now be able to quickly import any libraries that you want o use in your project via Maven.</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n  .dark-default-dark {\n    background-color: #1E1E1E;\n    color: #D4D4D4;\n  }\n</style>","frontmatter":{"date":"July 11, 2017","updated_date":null,"description":"Learn step by step setting up and resolution of maven dependency using eclipse IDE.","title":"Maven Dependency in Eclipse","tags":["Java","Maven","Eclipse"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7699115044247788,"src":"/static/2d5127407846f33b1b7073695bd669d7/ee604/maven.png","srcSet":"/static/2d5127407846f33b1b7073695bd669d7/69585/maven.png 200w,\n/static/2d5127407846f33b1b7073695bd669d7/497c6/maven.png 400w,\n/static/2d5127407846f33b1b7073695bd669d7/ee604/maven.png 800w,\n/static/2d5127407846f33b1b7073695bd669d7/f3583/maven.png 1200w,\n/static/2d5127407846f33b1b7073695bd669d7/e4d72/maven.png 1280w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Giriraj Yadav","github":null,"avatar":null}}}},{"node":{"excerpt":"jCenter is the public repository hosted at bintray that is free to use for open source library publishers. It is the largest repository in…","fields":{"slug":"/engineering/how-to-use-jcenter-dependencies-in-android-studio/"},"html":"<p>jCenter is the public repository hosted at <a href=\"https://bintray.com/\">bintray</a> that is free to use for open source library publishers. It is the largest repository in the world for Java and Android OSS libraries, packages and components. All the content in JCenter is served over a CDN, with a secure HTTPS connection. In this article, we’ll discuss how to make use of jCenter dependencies in Android Studio.</p>\n<p>Prerequisites</p>\n<ul>\n<li>Android Studio</li>\n<li>Existing project in Android Studio</li>\n<li>Active internet connection</li>\n</ul>\n<p>If you don’t have Android Studio installed, you can download from the following link:</p>\n<p><a href=\"https://developer.android.com/studio/index.html\">Android Studio</a></p>\n<p>After successfully installing Android Studio, you can open an existing project or create a new project to start with.</p>\n<p><strong>Usage</strong></p>\n<p>After opening or creating a new project, you can find two files named “build.gradle” under Gradle Scripts section in the left pane. The first one will be suffixed with “Project” and another with “Module”. We’ll start with the “Project” one.</p>\n<p>Add jCenter repository in project’s build.gradle file as shown below and sync your project:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"\" data-index=\"0\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">allprojects {</span>\n<span class=\"grvsc-line\">   repositories {</span>\n<span class=\"grvsc-line\">       jcenter()</span>\n<span class=\"grvsc-line\">\t   . . .</span>\n<span class=\"grvsc-line\">   }</span>\n<span class=\"grvsc-line\">}</span></code></pre>\n<p>On successful sync, you’re now able to add any Android dependency hosted on jCenter repository. The dependency will be added to “Module” build.gradle. It’s also known as app’s build.gradle.</p>\n<p>For example, if you want to add LoginRadius dependency/library, you can add in app’s build.gradle as follows and sync your project:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"\" data-index=\"1\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">compile &#39;com.loginradius.android:androidsdk:3.3.1&#39;</span></code></pre>\n<p>If all the steps are followed successfully, you’re now able to add a jCenter dependency in Android Studio.</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n  .dark-default-dark {\n    background-color: #1E1E1E;\n    color: #D4D4D4;\n  }\n</style>","frontmatter":{"date":"July 11, 2017","updated_date":null,"description":"Learn how to make use of jCenter dependencies in Android Studio.","title":"jCenter Dependencies in Android Studio","tags":["JCenter","Android"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7699115044247788,"src":"/static/21f45b8f9eba48b3695a10929ce75fff/ee604/jCenter.png","srcSet":"/static/21f45b8f9eba48b3695a10929ce75fff/69585/jCenter.png 200w,\n/static/21f45b8f9eba48b3695a10929ce75fff/497c6/jCenter.png 400w,\n/static/21f45b8f9eba48b3695a10929ce75fff/ee604/jCenter.png 800w,\n/static/21f45b8f9eba48b3695a10929ce75fff/f3583/jCenter.png 1200w,\n/static/21f45b8f9eba48b3695a10929ce75fff/e4d72/jCenter.png 1280w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Hitesh Pamnani","github":null,"avatar":null}}}},{"node":{"excerpt":"Bower is a popular package manager to help you quickly deploy components. In this article I'm going to show you how to install Bower and how…","fields":{"slug":"/engineering/how-to-use-bower-to-install-bootstrap/"},"html":"<p>Bower is a popular package manager to help you quickly deploy components. In this article I'm going to show you how to install Bower and how to use it to install Bootstrap.</p>\n<p>Pre-requisites: To install Bower you must first have Node.js and npm (another package manager) installed, your computer may have shipped with these pre-installed. To check if you have npm, open your command-line tool and type:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"0\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">npm -v</span></code></pre>\n<p>If you do not get a version number, you may need to install npm which comes pre-packaged with Node.js</p>\n<p>You can find Node.js along with instructions on how-to install it here: <a href=\"https://nodejs.org/en/\">NodeJS</a></p>\n<p><strong>Windows Users Only</strong>: If you're a Windows user make sure you have Git for Windows installed to work with the Windows Command Prompt with Checkout Windows-Style and commit Unix-style line endings. You can find more information on that here: <a href=\"https://git-for-windows.github.io\">Git for Windows</a></p>\n<h2 id=\"installation\" style=\"position:relative;\"><a href=\"#installation\" aria-label=\"installation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Installation:</h2>\n<p>Provided that you have both Node.js and npm installed, run the following command in your Command-line tool:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"1\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">npm install -g bower</span></code></pre>\n<h2 id=\"usage\" style=\"position:relative;\"><a href=\"#usage\" aria-label=\"usage permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Usage:</h2>\n<p>Once Bower is installed it's as easy as going to your project folder in Command-line and typing:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"2\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower install bootstrap</span></code></pre>\n<p>followed by:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"3\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower install jquery</span></code></pre>\n<p>This will install the files required for Bootstrap in the newly created 'bower_components' folder.</p>\n<p>In this folder you will have 2 new folders 'bootstrap' and 'jquery'.</p>\n<p>The next step is to include the files for both jQuery and Bootstrap into your project file(s).</p>\n<p>...And that's it, you're good to go.</p>\n<h2 id=\"updating\" style=\"position:relative;\"><a href=\"#updating\" aria-label=\"updating permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Updating</h2>\n<p>If you need to update a project and are unsure which bower packages you have installed that might need an update, you can type</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"4\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower list</span></code></pre>\n<p>in your project directory for a listing of packages you installed via Bower and which ones are due for an update.</p>\n<p>in this case if we wanted to update our bootstrap install we would do:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"5\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower update bootstrap</span></code></pre>\n<h2 id=\"making-your-bower-configurations-portable\" style=\"position:relative;\"><a href=\"#making-your-bower-configurations-portable\" aria-label=\"making your bower configurations portable permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Making your Bower configurations portable</h2>\n<p>Once you have figured out your configurations and installed all of your desired Bower packages you can use:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"6\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower init</span></code></pre>\n<p>Follow the steps provided in your Command-line.</p>\n<p>This will initialize a bower.json file which will store your configurations.</p>\n<p>Once you have your Bower.json file you can move it around to other locations or projects and you can get Bower to reinstall all of your packages and configurations by typing:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"7\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower install</span></code></pre>\n<p>This will get Bower to create another 'bower_components' folder with the same packages and configurations specified in your bower.json file.</p>\n<p>For further information on using or configuring Bower <a href=\"https://bower.io/\">You can checkout the official website</a></p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n  .dark-default-dark {\n    background-color: #1E1E1E;\n    color: #D4D4D4;\n  }\n</style>","frontmatter":{"date":"July 05, 2017","updated_date":null,"description":"Learn how the Bower package manager helps into quick components  deploy and install Bootstrap using Bower","title":"Install Bootstrap with Bower","tags":["Bootstrap","Bower"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.1363636363636365,"src":"/static/f22ed4623c0a1e31c973ed6e1f0ba4bd/ee604/bower-logo.png","srcSet":"/static/f22ed4623c0a1e31c973ed6e1f0ba4bd/69585/bower-logo.png 200w,\n/static/f22ed4623c0a1e31c973ed6e1f0ba4bd/497c6/bower-logo.png 400w,\n/static/f22ed4623c0a1e31c973ed6e1f0ba4bd/ee604/bower-logo.png 800w,\n/static/f22ed4623c0a1e31c973ed6e1f0ba4bd/a8378/bower-logo.png 1024w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Pascal Noel","github":null,"avatar":null}}}},{"node":{"excerpt":"Mapegy is a SaaS company based in Berlin, Germany that focuses on big data and innovation analytics, and provides online solutions as well…","fields":{"slug":"/identity/mapegy-loginradius-customer-success-story/"},"html":"<p><a href=\"https://www.mapegy.com/\">Mapegy</a> is a SaaS company based in Berlin, Germany that focuses on big data and innovation analytics, and provides online solutions as well as consultancy services. They are pros at tracking and measuring global innovation and technology trends, and they use this knowledge to help businesses and corporations make strategic decisions and create business opportunities.</p>\n<p>Our friend, James Gardner, the COO of Mapegy, shares his insights into the challenges that brought them to LoginRadius, and what’s kept our partnership successful all these years.</p>\n<h4 id=\"the-situation\" style=\"position:relative;\"><a href=\"#the-situation\" aria-label=\"the situation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>The Situation</strong></h4>\n<p>Mapegy needed user management solution that can be easily implemented and deployed so they can focus their efforts and resources on innovating their own products and services. </p>\n<h4 id=\"challenges\" style=\"position:relative;\"><a href=\"#challenges\" aria-label=\"challenges permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Challenges</strong></h4>\n<p>The three main concerns that needed to be addressed with the user management solution were:</p>\n<ol>\n<li>Reliability and scalability</li>\n<li>Simple registration and login process for a positive user experience</li>\n<li>Ability to extract valuable profile information</li>\n</ol>\n<h4 id=\"the-loginradius-solution\" style=\"position:relative;\"><a href=\"#the-loginradius-solution\" aria-label=\"the loginradius solution permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>The LoginRadius Solution</strong></h4>\n<p>With a flexible and customizable platform, alongside a <a href=\"https://www.loginradius.com/\">guaranteed 99.99% uptime</a>, Mapegy was reassured from the get-go that our solution is indeed both reliable and scalable when catering to their needs and user base as they grow. As well, our login and registration flows allowed Mapegy to provide their users with a streamlined and hassle-free login and registration process while creating <a href=\"https://www.loginradius.com/custom-object/\">centralized user profiles with the extended data points</a> that Mapegy was looking for.</p>\n<p>This played a significant role both in improving the user experience and providing Mapegy with the necessary data in order to to better understand their users.</p>\n<p>This also gave them the information to build their innovation graph as they continued to create and provide products that are the most relevant to their user base. As a company that serves global customers, we make sure that our support team is always available 24/7, regardless of what time zone they may be located in, and Mapegy has first-hand experience on the skills and speediness of our support team.</p>\n<p>Throughout their implementation process, our support team has always been readily available to answer any questions that Mapegy has and made sure that there is no lag in the support and the service that they would receive.</p>\n<iframe width=\"770\" height=\"480\" src=\"https://www.youtube.com/embed/icfip6ayoY8\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n<p>Mapegy - LoginRadius Customer Success Story</p>\n<p><a href=\"https://www.loginradius.com/book-a-demo/\"><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 30.307692307692307%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAGCAYAAADDl76dAAAACXBIWXMAAAsTAAALEwEAmpwYAAABbElEQVQY0zVQO0/CUBQmaihthUbRhPhCAlhKEXlE3s+CCEaBwQF10riQODkwaFyMMcTFwR9gjBvRSeKko4NxcfD/fJ57C8PJbc53+r0soj8Lm5qHbS0HW6AIwZ+DXSvAESxBpJ3MMLph3+xWDlUwm2jCGa5A0isQtRIkhrH/CbdwwkDBHAJlGodexsy6wUkduknMBCfdmxCCBhZKHailfUxGm5jQKphaTUDwmaIWdigyF1oZsm7AFavBRspKuMpdTJMQO5yLbCHVPkG0cYRY4xAR9tbp3T5AsnUMT7YFqzdtOuQOSFmiyMupXUihKuzk0hWvc0xgUYlYod18tAZPrg13eg8rNIuJHSihMtVUHEUe51cLPJ5zo8oJJRJQRnHlQB6WpTjOru7w/fuH59d3PL0M8Th4w+fXDwbDD16R1ZsxCcelsyUbidQEEuC9ECap1J8nCaPTRe/2Ad3LvjkXfZxf3+O0d8P7FnwZ/AMzEsMp2f6LdQAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"book-a-free-demo-loginradius\"\n        title=\"book-a-free-demo-loginradius\"\n        src=\"/static/779ad148d33fb1ecfd80cc41f1a94ef3/e5715/Book-a-free-demo-request-1024x310.png\"\n        srcset=\"/static/779ad148d33fb1ecfd80cc41f1a94ef3/a6d36/Book-a-free-demo-request-1024x310.png 650w,\n/static/779ad148d33fb1ecfd80cc41f1a94ef3/e5715/Book-a-free-demo-request-1024x310.png 768w,\n/static/779ad148d33fb1ecfd80cc41f1a94ef3/2bef9/Book-a-free-demo-request-1024x310.png 1024w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></a></p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"June 15, 2017","updated_date":null,"description":"Mapegy was reassured from the get-go with a versatile and adjustable platform, alongside a guaranteed 99.99 percent uptime, that our solution is indeed both reliable and scalable when adapting to their needs and user base as they expand. Our login and registration flows have helped Mapegy to provide a simplified and hassle-free login and registration process for their users while building centralised user profiles with the extended data points that Mapegy was searching for.","title":"Mapegy, a LoginRadius Customer Success Story","tags":["media-and-publication"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7857142857142858,"src":"/static/54e1e7d0a783d012873ccd7a3dec930b/14b42/Mapegy_LR.jpg","srcSet":"/static/54e1e7d0a783d012873ccd7a3dec930b/f836f/Mapegy_LR.jpg 200w,\n/static/54e1e7d0a783d012873ccd7a3dec930b/2244e/Mapegy_LR.jpg 400w,\n/static/54e1e7d0a783d012873ccd7a3dec930b/14b42/Mapegy_LR.jpg 800w,\n/static/54e1e7d0a783d012873ccd7a3dec930b/87ed9/Mapegy_LR.jpg 961w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Karl Wittig","github":null,"avatar":null}}}},{"node":{"excerpt":"Founded in 1995 by Arik Johnson, Aurora Worldwide Development Corporation (WDC) is a leading analytics and intelligence firm providing…","fields":{"slug":"/identity/aurora-wdc-loginradius-customer-success-story/"},"html":"<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 56.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAALABQDASIAAhEBAxEB/8QAGAAAAgMAAAAAAAAAAAAAAAAAAAQBAwX/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/aAAwDAQACEAMQAAABfqx4VgXE/8QAGxABAAICAwAAAAAAAAAAAAAAAQACAxESFDP/2gAIAQEAAQUCw+VBudlrC7rbOTP/xAAUEQEAAAAAAAAAAAAAAAAAAAAQ/9oACAEDAQE/AT//xAAUEQEAAAAAAAAAAAAAAAAAAAAQ/9oACAECAQE/AT//xAAdEAABAwUBAAAAAAAAAAAAAAAAAQJBEBESITFR/9oACAEBAAY/Akb4g7J8wW0dr//EAB0QAAICAQUAAAAAAAAAAAAAAAABETEhUWFxgZH/2gAIAQEAAT8hiknOIfT7JYQlqx0j7jMaQZp6o4PEf//aAAwDAQACAAMAAAAQsx//xAAXEQADAQAAAAAAAAAAAAAAAAAAARFR/9oACAEDAQE/EIRYf//EABQRAQAAAAAAAAAAAAAAAAAAABD/2gAIAQIBAT8QP//EABwQAQEAAgMBAQAAAAAAAAAAAAERACExQVGB8P/aAAgBAQABPxAOCRpD7MeGlFA40d4twvhLgRUoSG8CglnRx5i7u/15n//Z'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"LR Aurora WDC\"\n        title=\"LR Aurora WDC\"\n        src=\"/static/75bc1e3a3d7279449b5ed769951e7ea5/212bf/LR-Aurora-WDC.jpg\"\n        srcset=\"/static/75bc1e3a3d7279449b5ed769951e7ea5/6aca1/LR-Aurora-WDC.jpg 650w,\n/static/75bc1e3a3d7279449b5ed769951e7ea5/212bf/LR-Aurora-WDC.jpg 768w,\n/static/75bc1e3a3d7279449b5ed769951e7ea5/9100a/LR-Aurora-WDC.jpg 959w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Founded in 1995 by Arik Johnson, <a href=\"https://aurorawdc.com/\">Aurora Worldwide Development Corporation (WDC)</a> is a leading analytics and intelligence firm providing consultative services to corporate clients worldwide. We are grateful to be able to have such a long-standing relationship with Aurora WDC and glad that we have been able to help them in providing a better user experience and a well-rounded solution to better manage their client relationships.</p>\n<p>Here, we share the story of Aurora WDC's journey with LoginRadius (with the video down below).</p>\n<h4 id=\"the-situation\" style=\"position:relative;\"><a href=\"#the-situation\" aria-label=\"the situation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>The Situation</strong></h4>\n<p>In 2012, Aurora WDC built a social learning platform, Reconverge.net, with the goal of creating a community where their clients are able to connect with each other and learn how to do competitive intelligence work more effectively.</p>\n<h4 id=\"challenges\" style=\"position:relative;\"><a href=\"#challenges\" aria-label=\"challenges permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Challenges</strong></h4>\n<p>In order to build an effective social learning platform and attract members to become a part of this community, there were a few hurdles that Aurora WDC needed to overcome:</p>\n<ul>\n<li>Simplify the login and authentication process</li>\n<li>The solution needs to be compatible with and implemented on their WordPress websites</li>\n<li>Need to integrate the user data with other systems, namely Salesforce and Pardot</li>\n<li>Eventually transitioned to Hubspot - need to re-integrate with the new system</li>\n</ul>\n<h4 id=\"loginradius-solutions\" style=\"position:relative;\"><a href=\"#loginradius-solutions\" aria-label=\"loginradius solutions permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>LoginRadius Solutions</strong></h4>\n<p>When Aurora WDC approached LoginRadius with said challenges, we gracefully accepted and proceeded to tackle every single one of them. First and foremost, <a href=\"https://www.loginradius.com/social-login/\">our social login feature</a> allowed them to provide social login options for their users, which resulted in a quick and easy registration and authentication process.</p>\n<p>Users no longer had to experience the hassle of entering in their personal details or come up with yet another password, and can simply select and login with their preferred social provider.</p>\n<p>In addition, LoginRadius' comprehensive WordPress plugin ensured that there were no issues when implementing this solution on Aurora WDC's WordPress-based sites.</p>\n<p>One of the main strengths of LoginRadius <a href=\"https://www.loginradius.com/blog/identity/customer-identity-and-access-management/\">customer identity and access management</a> platform is its flexibility to integrate with multiple systems and tools that our customers are using to help enhance their workflows.</p>\n<p>In this case, we were able to successfully integrate Aurora WDC's LoginRadius account and user data with both Salesforce and Pardot so they can have a clear view of their clients and manage those relationships, as well as maximize their marketing efforts based on the user data collected via LoginRadius.</p>\n<p>As Aurora WDC transitioned to Hubspot, we stepped up our game and re-integrated them with Hubspot to make sure that there is no interruption as they continue to build their client relationships.</p>\n<iframe width=\"770\" height=\"480\" src=\"https://www.youtube.com/embed/4AIlzL5QRqo\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n<p>Aurora WDC - LoginRadius Customer Success Story</p>\n<p><a href=\"https://www.loginradius.com/book-a-demo/\"><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 30.307692307692307%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAGCAYAAADDl76dAAAACXBIWXMAAAsSAAALEgHS3X78AAABdElEQVQY002RO0/CUBzFG6PtbZWHCAmRmBB5P8vDII9SSC0omog4oAEGjZMO6OKEuLjoJ2Fx0cSBwUQnXZxcHPwux38LJA7nNvfec8+5v1tOCCiwpbbhye2BxbYgBMtgIRVioDRRsARGXxZUzLlEHmehBaesQ4rrEMPViYf2DR9nDGKkChbVICVqsMt1WJI1sHCFwhUsUIFohJH49TxECvRUjhDW2mAbB5iP6hB8hUkhiRPN5KIZYJdrsEYrcCSpmQqMm6/m9ylUhSulY7N5ivROB3L9GOlGF3Ktbc4zuz341UPw/uIk0ESbBjoSGlYIx8BfzjSwVmyCEYEUUmCPa3Bnd+hwC75yC95S05SxbolU/iEbOCFCpDexEfIioTNCNd6Tp6IlMnNuGeeDe3z//OLx5RWj5zFGT2O8fXxh/P4Ja6w6vSEFCnTIlW2YiDzhzX7ATFKojDlvjpBPcDF4QPdyiG5/iE7/BmfXd+hd3VKpCoG8fzxWw2+c+yTpAAAAAElFTkSuQmCC'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"book-free-demo-loginradius\"\n        title=\"book-free-demo-loginradius\"\n        src=\"/static/fcc4c4b5dc38cc4528f99d09480f4eb2/e5715/book-a-demo-loginradius.png\"\n        srcset=\"/static/fcc4c4b5dc38cc4528f99d09480f4eb2/a6d36/book-a-demo-loginradius.png 650w,\n/static/fcc4c4b5dc38cc4528f99d09480f4eb2/e5715/book-a-demo-loginradius.png 768w,\n/static/fcc4c4b5dc38cc4528f99d09480f4eb2/63ff0/book-a-demo-loginradius.png 2887w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></a></p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"May 26, 2017","updated_date":null,"description":"Aurora WDC is a leading analytics and intelligence company that has been able, with the aid of LoginRadius, to provide its members with an improved user experience and to better manage their customer relationships.","title":"Aurora WDC, a LoginRadius Customer Success Story","tags":["media-and-publication"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7857142857142858,"src":"/static/75bc1e3a3d7279449b5ed769951e7ea5/14b42/aurora-wdc-loginradius-customer-success-story.jpg","srcSet":"/static/75bc1e3a3d7279449b5ed769951e7ea5/f836f/aurora-wdc-loginradius-customer-success-story.jpg 200w,\n/static/75bc1e3a3d7279449b5ed769951e7ea5/2244e/aurora-wdc-loginradius-customer-success-story.jpg 400w,\n/static/75bc1e3a3d7279449b5ed769951e7ea5/14b42/aurora-wdc-loginradius-customer-success-story.jpg 800w,\n/static/75bc1e3a3d7279449b5ed769951e7ea5/1d253/aurora-wdc-loginradius-customer-success-story.jpg 959w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Karl Wittig","github":null,"avatar":null}}}},{"node":{"excerpt":"Did you know 90% of all product assessments are based on colors and 85% of buyers select a product on the basis of its color?  Hence…","fields":{"slug":"/growth/complete-color-scheme-guide-for-your-website/"},"html":"<p>Did you know <a href=\"https://blog.bufferapp.com/the-science-of-colors-in-marketing-why-is-facebook-blue\">90% of all product</a> assessments are based on colors and 85% of buyers select a product on the basis of its color? </p>\n<p>Hence, selecting a perfect color plan for your website is important. But, it can seem like a tough game- especially if you do not trust your color senses. I have seen people getting nervous or confused when it comes to decide a color scheme for anything. It may because they are not confident at the deciding stuff or may be they are color blind.</p>\n<p><em><strong>Fun Fact</strong>:- Mark Zuckerberg is red-green colorblind (that’s the reason why Facebook is blue).</em></p>\n<p>So, coming back to the point, what’s your story? Do you also have these three questions while deciding your website’s color scheme:-</p>\n<ul>\n<li>What colors should your title or logo have?</li>\n<li>What are different colors that go well with different parts of website?</li>\n<li>Are there any good tools to make things a lot easier?</li>\n</ul>\n<p>You can turn your website into a harmonious place or a piece from a horror movie with your color schemes. Hence, here I am presenting a guide to help you decide what is wrong and what is right for your website in terms of color scheme.</p>\n<h3 id=\"influence-of-color-on-your-business-identity\" style=\"position:relative;\"><a href=\"#influence-of-color-on-your-business-identity\" aria-label=\"influence of color on your business identity permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Influence of Color on your Business Identity</strong></h3>\n<p>Whether it is your brand image or your website, colors can work like magic on your business. And while talking about the role of color in business, Coca Cola is the best example.</p>\n<p>What are the things that come to your mind when I say the word Coca Cola? Obviously, a bottle of it. Then, the red logo of Coca-Cola. There was a reason why Coca-Cola chose the color “Red”.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 620px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 76.61290322580645%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAPCAYAAADkmO9VAAAACXBIWXMAAAsTAAALEwEAmpwYAAAEMklEQVQ4y0WTW0xcRRzGZ7mUi5QCQmB3WfbKskBZYIGWQkNqubQURAplaYJQrgVaIFykBFoil0BbkGtNNLU1paFqtAZ9sI36oEm9xkBaQ3BvZxcW9kA1+tDE9eF4zufs8uDDl5nMTL75zff/D3HEZr+wBST8aw/Xc/awFM4elcYxocl0fpizh6dwDnE6x4Qkc0xQImd/mZ6J1Hv3mUAd5yqt4VxltdyusZlzVtRx6wd1HLGF6/8xkzjYDupgDdLC4qvyyhqggTU4fl9B8bCIlPvrgXT9gBoWIocz6SR2Mouxl12GjSNFeEpkIExkmtuzafFVC2Z/tWAN1gpWf41gDYgXbCEJgjUwXqAXCRY/tWDxUQkW0f8yE5mwTqTCKpEIP4qkAkOUArHHGNwmamilh51+GtgIJQnWUgoNLIGULiTBS+t5gcVHCaufh5ISEwUYcTpMsgxsxGXALqUK0FJCxRG3nRpuiJTCFwfisOanwI6PGmZqwtAIGGpkFlET73N1sEWk0gtoNJ7L6Zw5lALmpSQaiw6UEGRLedS9KopDpVQq6NRi5CgkmA+Q4Hd/LdZDE7AuUsAuUuM3mg8TnYndhm487xjE8943sVvfjb3Wfux61NSDzSgDyB+KbPdMYAwilVFCskqCCGk4jLFiTAZEIysuBlVJGjzxjYOLqGCmBFs55WCr28Ceb8f2qRo4c8/C9VoD9pr64AjTU0NltnveLwrimFBBJ4vCw95yfNxYgKzEWNQVpiMvTYFGuQzf0DhMNDdnRgmcrxixnV+NzfRibKadxvYJI3ZKL8ARngrCUsIPg+S4VGgQPu8swZ93uzHXWIzr1bngHk/hTlspTurlyFRFYyQshppKKKmYjjF0lHjlmZtINM1QDrJyqdM9crUf81VnhMdV2fiu+1V0Feeg4UwOHHcG8OJeH3oLUmHQSnGcUj+IkGOLkppoUWgb7ctX7ZW3KIt3F90jk8OYqqkUfhiqxfsXz2Gy5QImZyew0FWHb6+cw1BpJg4rolGWIsdyWz0tThYlk+2bedqMyuzjMVSBvDU15h4bG8TAUI+w8sl9PPz0AWYXbmBmZgLXRgYx0ViB/qI05CbKkCM+hA9WlrD+xiA2SASl0uz/ICoHfbqD/jgyP3/974GBLszNTvDjN0b5qY4mfmHiGt9yuZ5/72o7v2g8zQ+czeOz1NH8eW0s/1lJCb86N87/VFDOW4mEpz+GtxAV/8hYz69pjvNk4dY093ptFS53NGPx5hCWKovQWFKAsfwTcL7Ti59HW8G824OWY/G419mAL0/l49FoP6y/PIEpija5jwK28CR83dqOZ4Z8kFvj/fbW2ordheYKl3N5mHXdH2aHGyrY74cvsszbfezaaD3LLo+wG7evsOxXt9lfP5pm/1qZZp8u3WSfGQrZTbGB3dTnsazuGLutOsr+BxCPhvD5VnTZAAAAAElFTkSuQmCC'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Coca Cola\"\n        title=\"Coca Cola\"\n        src=\"/static/35191aa8d5c83fee40db8631db8791f8/2a195/Coca-Cola.png\"\n        srcset=\"/static/35191aa8d5c83fee40db8631db8791f8/2a195/Coca-Cola.png 620w\"\n        sizes=\"(max-width: 620px) 100vw, 620px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"http://1.bp.blogspot.com/-feRUkS6z3uo/VIctsB0pI1I/AAAAAAAAAAo/nbmsMeSl_ls/s1600/india.png?ver=1553881376\">Source</a></strong> </p>\n<p>Red shows excitement, passion and boldness and these were the emotions Coca-Cola wanted to convey with its product. Moreover, the color red makes it more visible on the shelves from its competitors. Well, here is an image showing reasons for different brands choosing respective colors in their logos.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 86.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAARCAIAAABSJhvpAAAACXBIWXMAAAsTAAALEwEAmpwYAAAD00lEQVQ4yyXTa0/bBhQG4Pyd/ZRt0rRN+zIVdWWUXdlot7GVikKhK6WjUllbWAVbBrRACEm4JEADuUIu5EJIYmM7dhLjOE6wHceXxE7sOGRBOzo60nukR+fTMQg7vqu9/XbGXeOCPty1EK6KdUWR66IoKorSnZIoCbxQq9Wq3eK4crlMUVS5dIk7y4aqyalZt5pnNu5iZQfanPGxnCALvFjh+LrSFASpylVomuZ5jmUYmmYoskgQF0WyCC+RhiqD6w1OkytardSu01dKWRVJTSxoUlEVibZWbbdbbb0tN1pKTSRRmOUFSZI4jqtQFQMXG2whvzWBARV9pGbGmsj9RuSjZqKnEflQgx4I7HIm9HBvaaqjlzqKcOQ5zJMUX2EkSVQadUPVPqS7flH3B7XDEc1xR9voVTf7Nftga+NLLWMjADvgMQa3/qYyzsONe5JU5BgewzCeFyWpbhBHf+pMj+tTY/qzifbvQ+3hb/WhAf37W/raopJ26hk3gyUoIJKHIkXsmCMPpEszR1dSAXNNrhqYLyaavZNyz4Qy+FK580L+fEK+OdndqA5PwxsQ7Qf1o6BM4AoaycX83GU+djSSw49BMNCoFw3Y7ClthKlZgP7nHH+aLDxPXTwH8e0c4sqRaVKG83IwUl238Ae7UdML5MjejJpq2BzHFOsybxidx6fXquOLzMDs5a9zzMBfzEsrlyUEKMdQOMMiJBzCpDRU/XdRKhQcc4/JqC149JTj8E6nY+hbdQw7vd9tuW6Y7Hd3bbc2rPOhE5Ri96PkSoAg1daZEUxYMH7byi6bedcSHbM43tyoEJ5rvH/2JJCd86MzbvjJdnI4kJ1/6/9zJ+F2w+/C+fyCPxfxZureQvM4KUy/jti3Ds3LpfCDCrZ9jdPnqSyRw3AMyWZABIrHz7BMLgGnN9O70fx+OJXfO0FLCeLy/KLpclFxZ+5kI+ycKBVOr7HAS1ctTWuq3XAOQvHTuNJQQADudqqEhNKAzQfNv3IsTq7Qtk3JbVMhZ3D3Gzhh/x+nOh25JdQ6styVLMuSJMmwDJBOo8VUAIwlLzjrG79n4UBaXOVDPqkAQNG3meS7a8ye/Ky7lzSft4CieC7n8boBABBEocLyqaw7UYg5UcnjiAVWfJ0FI+E6AD27bd7fqYNXXZwaH0v09ox9+onJYlEbjVA4RBSI7t9AIBpCzLbU2pSTWrehp7Nu9vYI+Wi0aLpfdnwggH9cXy5/tup9ePfmD31f3f76NB5r6xoMw1g2a163GK2j94zD/a/DM4/j0R/NyHsfE339iGkEM73PJJ918X9M2y1wc4SQmAAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color emotion guide\"\n        title=\"Color emotion guide\"\n        src=\"/static/ec3235ba4c2ada8a855619d6b7c2cb6c/e5715/Color-emotion-guide.png\"\n        srcset=\"/static/ec3235ba4c2ada8a855619d6b7c2cb6c/a6d36/Color-emotion-guide.png 650w,\n/static/ec3235ba4c2ada8a855619d6b7c2cb6c/e5715/Color-emotion-guide.png 768w,\n/static/ec3235ba4c2ada8a855619d6b7c2cb6c/a8a6f/Color-emotion-guide.png 1516w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"http://blog.dahmundfreunde.de/wp-content/uploads/2014/05/grafik.png?ver=1553881376\">Source</a></strong> </p>\n<p>Kissmetrics says that there is an <a href=\"https://blog.kissmetrics.com/color-psychology/\">80% increase in brand recognition</a> when colors are used.</p>\n<p>So, how can you use colors to increase your brand recognition?</p>\n<p>Create an awesome color scheme and here’s <strong>how you can create a color scheme</strong>:-</p>\n<h3 id=\"cast-your-prominent-color\" style=\"position:relative;\"><a href=\"#cast-your-prominent-color\" aria-label=\"cast your prominent color permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Cast Your Prominent Color</strong></h3>\n<p>Your customers will connect their emotions with your brand through your prominent color. Hence, choose a color that convey the emotions about your company (like the red color in Coca-Cola does). Your logo should contain your prominent color as the primary color. However, if you have no clue which color to cast as your prominent color, see this image to decide the color of your choice.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 89.38461538461537%; position: relative; bottom: 0; left: 0; background-image: url('data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAASABQDASIAAhEBAxEB/8QAFwABAQEBAAAAAAAAAAAAAAAAAAMBAv/EABcBAAMBAAAAAAAAAAAAAAAAAAECAwD/2gAMAwEAAhADEAAAAad37ntUVnQKcDD/xAAZEAADAQEBAAAAAAAAAAAAAAABAgMAEiD/2gAIAQEAAQUCo8Uady2DrjMd8+f/xAAWEQADAAAAAAAAAAAAAAAAAAAREiD/2gAIAQMBAT8BQx//xAAXEQADAQAAAAAAAAAAAAAAAAABEBED/9oACAECAQE/ATrDIiv/xAAbEAACAQUAAAAAAAAAAAAAAAAAERIBICEiMf/aAAgBAQAGPwJRZTU6iSMW/wD/xAAcEAADAAMAAwAAAAAAAAAAAAAAARExQVEhYaH/2gAIAQEAAT8hSJO+fRbErEvsaWzaeUdo7DwyduxKERFwiP/aAAwDAQACAAMAAAAQtyfC/8QAGREBAAMBAQAAAAAAAAAAAAAAAQARIRAx/9oACAEDAQE/EAARyNXkPOf/xAAZEQACAwEAAAAAAAAAAAAAAAAAARARITH/2gAIAQIBAT8QXd0I6j//xAAdEAEAAgIDAQEAAAAAAAAAAAABABEhMVFhkUGh/9oACAEBAAE/ENqBOFJaUeStMJ7ytWnBrqv2ZEBaWCcJ8dexNpzxkc7riCShGCIA0X9a2w4DydDydB5P/9k='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Colors and types of consumers\"\n        title=\"Colors and types of consumers\"\n        src=\"/static/65336d8f8f1dbbbd1eeb7cf980a08afb/212bf/Colors-and-types-of-consumers.jpg\"\n        srcset=\"/static/65336d8f8f1dbbbd1eeb7cf980a08afb/6aca1/Colors-and-types-of-consumers.jpg 650w,\n/static/65336d8f8f1dbbbd1eeb7cf980a08afb/212bf/Colors-and-types-of-consumers.jpg 768w,\n/static/65336d8f8f1dbbbd1eeb7cf980a08afb/2ed8b/Colors-and-types-of-consumers.jpg 1648w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://mustafa12abdall.files.wordpress.com/2015/01/colors_customers_2.jpg?ver=1553881376\">Source</a></strong></p>\n<p>You can also see for this chart to decide which colors to pick from the slot:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 80.61538461538461%; position: relative; bottom: 0; left: 0; background-image: url('data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAAQABQDASIAAhEBAxEB/8QAFwABAQEBAAAAAAAAAAAAAAAAAAMBBf/EABYBAQEBAAAAAAAAAAAAAAAAAAACA//aAAwDAQACEAMQAAAB6WUKoM3/xAAZEAEBAQADAAAAAAAAAAAAAAABABECEiH/2gAIAQEAAQUC6GHAgvY2Nv/EABcRAAMBAAAAAAAAAAAAAAAAAAECEBH/2gAIAQMBAT8Bc7P/xAAVEQEBAAAAAAAAAAAAAAAAAAAQQf/aAAgBAgEBPwGH/8QAGxAAAgEFAAAAAAAAAAAAAAAAADEQAQIhQWH/2gAIAQEABj8C2XPPYVRR/8QAGxABAAIDAQEAAAAAAAAAAAAAAQARITFBYZH/2gAIAQEAAT8hbheV9lIGxYIOxDebwgzt/Jtn/9oADAMBAAIAAwAAABBbH//EABgRAAIDAAAAAAAAAAAAAAAAAAABITFx/9oACAEDAQE/EHWkWn//xAAYEQACAwAAAAAAAAAAAAAAAAAAARExYf/aAAgBAgEBPxBURGH/xAAcEAEAAgIDAQAAAAAAAAAAAAABESEAQTGRwVH/2gAIAQEAAT8QdAIbds4Ni+Sm2vM5R2fmDqGTAF9uMqbYKe4OSQmq1n//2Q=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology\"\n        title=\"Color psychology\"\n        src=\"/static/cffd6543f1121e946f3c9c5d9a7c1da4/212bf/Color-psychology.jpg\"\n        srcset=\"/static/cffd6543f1121e946f3c9c5d9a7c1da4/6aca1/Color-psychology.jpg 650w,\n/static/cffd6543f1121e946f3c9c5d9a7c1da4/212bf/Color-psychology.jpg 768w,\n/static/cffd6543f1121e946f3c9c5d9a7c1da4/c546a/Color-psychology.jpg 1453w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://s-media-cache-ak0.pinimg.com/originals/25/93/1f/25931fe9980a8a2e06cd66df76a055ee.jpg?ver=1553881376\"><strong>Source</strong></a> </p>\n<p>Other than these psychological facts, you can check whether you are going to serve a youthful and energetic audience or your product is targeting a female audience. Hence, you have to decide the color on the basis of your targeted audience. </p>\n<p><em><strong>Fun Fact:-</strong> Do you know why hyperlinks are <a href=\"https://blog.kissmetrics.com/how-colors-affect-conversions/\">blue</a>?</em></p>\n<p>It is found out that most of the color blind patients are red-green color blinded just like Mark Zuckerberg. And almost no one in this world is blue-color blinded. It means that almost everyone in this world can distinguish blue from other colors and that’s why hyperlink’s default color is blue.</p>\n<p><em>Some statistics that show what color do what men and women get attracted to while shopping</em></p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 655px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 67.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAANCAIAAAAmMtkJAAAACXBIWXMAAAsTAAALEwEAmpwYAAAB20lEQVQoz11SXW+jMBDs//8xvcfex0srRe21QNXrcUqhUEIghgCxsY0JYGxuwVF6uRVCY69nd3a0V9M0aa3hXxQFYwyAWqLrOsBhzr+/ZgU5pi8p+p0dWvyQOTuWQ8q27atpiXEco4+PDCFTq21bSinU+ZPQLzZK9nzzGMdWmrH9bXofke2JbNoe2/bd9+M4hip6CQBwL6XknAPoeNOLFgAVTI7yovMwDGEYIoRAMDD7vme0hqqqCJV3JzGq3BVZP1CCfc8vy/KCDJwkSeDWtAUhrK6VnsYyGta3I92X7gq//WSMep53qKpP8lmnsQqkwlEZDVpNSoIEPSp4oZfHZiLHcU6dIcAkEH/OqdkLPYyKNAMchWyPsgMqGAnPLmRDpGmKMTZCIM2b2afXmFw/JlFJrdx5Lt0kTX58/RYEwUy2rBMZHPJ9f7vdGjIchRAA46q9e8MHflyTwKcxIdi2n/I8u+gMs202G9gTYx7wYfIZ9+2x2s3pBmtRKzXRnA2d/H9J/Hcf7dB5/nIpVIe/0tW1QKH0VmN4j+PSvVnn3rJh1j8zn9fTWC0XV/q6qINn1TV6H05V1IsBuVlzaD47w4R1XbMlABBCDAZjKW9YIxhv6PIxDpAvmzuT/wKzvt2k54rlYQAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology based on gender\"\n        title=\"Color psychology based on gender\"\n        src=\"/static/b54b95d67dce66ecf413078466f43e08/ae6b7/Color-psychology-based-on-gender.png\"\n        srcset=\"/static/b54b95d67dce66ecf413078466f43e08/a6d36/Color-psychology-based-on-gender.png 650w,\n/static/b54b95d67dce66ecf413078466f43e08/ae6b7/Color-psychology-based-on-gender.png 655w\"\n        sizes=\"(max-width: 655px) 100vw, 655px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://blog.kissmetrics.com/how-colors-affect-conversions/\"><strong>Source</strong></a></p>\n<p>Also in another experiment, it was found that men preferred shades and bright colors while women preferred tints and soft colors.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 570px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 729.6491228070175%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,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'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color naming based on gender\"\n        title=\"Color naming based on gender\"\n        src=\"/static/44538dab97c06e4f6732454a51bf1610/432e7/Color-naming-based-on-gender-2.png\"\n        srcset=\"/static/44538dab97c06e4f6732454a51bf1610/432e7/Color-naming-based-on-gender-2.png 570w\"\n        sizes=\"(max-width: 570px) 100vw, 570px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span><strong><a href=\"https://blog.kissmetrics.com/gender-and-color/\">Source</a></strong></p>\n<p>By these data, you can certainly improve your color marketing strategies through color scheme.</p>\n<p>Hence, it may be clear to you that personal decisions to purchase a thing are triggered by one’s own perception of himself or herself. If a person thinks of himself as elegant, attract him with black color. If a person enjoys trust and peace, attract her with blue color. I’m pretty sure that will work for you. That’s why I’m repeating that it is very important to know your target audience.</p>\n<h3 id=\"using-the-prominent-color\" style=\"position:relative;\"><a href=\"#using-the-prominent-color\" aria-label=\"using the prominent color permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Using The Prominent Color</strong></h3>\n<p>Now, let’s discuss about the areas on your website where we can use the prominent color. There is a simple thumb rule needed to be followed while using prominent color.</p>\n<p>Only use prominent color on areas which you want to highlight to you customers like you logo, menu tabs, call to actions, and any important information. Here’s, how we do it at LoginRadius.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 650px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 69.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAIAAACgpqunAAAACXBIWXMAAAsTAAALEwEAmpwYAAAChUlEQVQoz41SSW/TQBTOnwLxLxAc4B9w64FKwIEDnIATCJVuqIEAqpBYVBpVggJtU4kuiEKoUJs2i5rdceyMZ/fMeGzznJY71sgefcub98ZfjmjZJ6za7WHBlDUy0kxJHyMiBREMCw54wCmRnIbc57Sw15rdOUFSOQLlTBSFKKCMh6FWSksBKkZwQCkLAhJggjEJUJAtjGWoXRI6WFhjhwLndGQ0Z5Sx5hC3PaCVtTa2tjei9a5X73mMizAMhZB9H9d6/tAZWqMipQcM5ZTRqNfBCHEhxzqVJOCNhZTZmZhIKbXWKlSAcC6hTaieJml2somj9D+fJIGXwAF2+4axkWJn5iTNCClDQqjnea47xBj7vh/A3IQgFLiuCxvQRKEc1CqGs5Hm/8zjqkqIQbulFHx5dkGUDl2XUmqMGU+BjYkcx0G+B2I/pJkZfJJRb9CvVI52N0tABDhYefv682L+/bOZXz/3xggpzM8dV+vz9+7sfdsEJJsZnASTxReF/MMHj25d/1F8A8ThwZ/7k9cmr1y8cO78wvQUIPvl8s2JieWl5auXLn9a/XJmjtOEc15cXc8vvlvIv2w2GkBgNNre+Dr99PmN23dL6xuAHBxUisvF0traxw9L9WYHEE+SXJRYLgSlJIKMqNBHyGjtBdANjSOdJBb3+kbpgEvBuZJSCAF7MI9gZh3bNDIrv9tTG9XHa0flupOmsdLq1U5jeqP6pFSrnXSk0+44w9lSdaZULWw3IJQmTsuemzM2u+26H2616FYD+V339MftO2K7SXZblGubGiVC/b3Dtpqk3GOg73I1d3icE5A1G8WJzTxpTPyBB4HzxyXGyyY2gswlMbCnGm3NuG38F3ni+YnTzqbsAAAAAElFTkSuQmCC'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Using The Prominent Color\"\n        title=\"Using The Prominent Color\"\n        src=\"/static/06efedcb8f122e10c4e9e04c9af2a211/a6d36/Using-The-Prominent-Color-2.png\"\n        srcset=\"/static/06efedcb8f122e10c4e9e04c9af2a211/a6d36/Using-The-Prominent-Color-2.png 650w\"\n        sizes=\"(max-width: 650px) 100vw, 650px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://loginradius.com/\">Source</a></strong> </p>\n<h3 id=\"using-accent-colors\" style=\"position:relative;\"><a href=\"#using-accent-colors\" aria-label=\"using accent colors permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Using Accent Colors</strong></h3>\n<p><a href=\"https://www.thespruce.com/what-are-accent-colors-1391698\">Accent colors</a> are the colors used for emphasis. Now, why do you want to use Accent colors when prominent colors are everything you need? Because your website will look boring if you use only a single color all over the place. Hence, to provide it a professional and interesting touch, you need to use accent colors on elements like quotes, subtitles and other information on your website.</p>\n<p>For example, you can use accent colors on secondary information, current menu tab and basically those elements that aren’t the current primary focus but still you want them to be highlighted.</p>\n<p>Also, do not use more than two accent colors on your webpages. It may confuse your prospects. Here’s a simple example to use accent colors on your website:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 660px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 68.15384615384616%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOCAIAAACgpqunAAAACXBIWXMAAAsTAAALEwEAmpwYAAACjElEQVQoz12SW0/UQBTH+4mMfgzjF/CS+KzEB40kmogICQEhGkkgMfJkBB5IwASNCUvcgouLmHBJgBVY2e22u9vuttPpTG/TTi/raRfj5Z+mnfnPmTm/njmCHyUKclRNj+OklytJEg/ksyiK/SAIeRSGIWOMc85C3oujYhWNFuofjnUh4Nz1mef7POIQ4TiOTamFMSHEtm3LwpRS08QmMnNhiPFYiB2feEyI4xiOxbbX6BLZoIwFEWSMY0TBwdWWLnex7/teLg2Rc9WsadgHkDAQgBM2mBZBFsXEBoQ+vOv5uml1DLOLslAgD4KAOo5JbDBZAMRc6P2rNE3h9Z+Z/NafpTSFqZACIufZMPtyYIZhnxze2Tx38vXMSXPlB/UEZhPaVRm1QtfGhgHF0zSt3WpblkUJ0XXDdlwonoGQqmkWoX8TXWBHSRr3ehQZJ7s7OWesqWq72VKbSrVy5LpOFhNFDUkyDKMpy1sbRbjabLMfhEZbUqTa7t7BTqkEDtTmi/j57fjQ2vzc7MRovV4DExBeT78ql7fF1ZWpwXvwF9nm8tfy3Mz03OTIxP2731cXwcEmfjH8aPzOrRvXrl6+dOXbRhHM08qPhwMDi+8WRoZHrt+8HfUz7x0cLn9cfznzZmF+sdlogMN5eLa/s7y09Gxs8sHg4/PqTzDPTs8+vV8pFgqQWVxfZzzOmgSZ2ICLdtwustSuATUnrq90EII2sz1M3Y5JIE8bUR1TZNmYOppJ3YALcANaRy8dN+DZPFZOqnWsKsy1K/XW5hGYcrnSgG6FzNCupaP6VkURDyWprV9U2w7iqU3luSg/WZP2ZIsZWuwSsUafFqSxYmN2W03y1uiHTYjy0Fp9v+2C8wvAHe8kzyulLgAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Using accent colors\"\n        title=\"Using accent colors\"\n        src=\"/static/5d87439402f553aa4ea88bc5efae5b1d/1f083/Using-accent-colors.png\"\n        srcset=\"/static/5d87439402f553aa4ea88bc5efae5b1d/a6d36/Using-accent-colors.png 650w,\n/static/5d87439402f553aa4ea88bc5efae5b1d/1f083/Using-accent-colors.png 660w\"\n        sizes=\"(max-width: 660px) 100vw, 660px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span> <strong><a href=\"https://loginradius.com/\">Source</a></strong> </p>\n<p>Now, there are two ways to select your color scheme. Pursue a Phd career in color psychology or use these color matching tools to create a color palette (well, hiring a good designer may cost you more).</p>\n<h3 id=\"tools-for-creating-color-palette\" style=\"position:relative;\"><a href=\"#tools-for-creating-color-palette\" aria-label=\"tools for creating color palette permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Tools for Creating Color Palette</strong></h3>\n<h4 id=\"1-coolors\" style=\"position:relative;\"><a href=\"#1-coolors\" aria-label=\"1 coolors permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>1. Coolors</strong></h4>\n<p>Coolors is an awesome site to generate color schemes. You can generate, store and share your favorite palettes within seconds in Coolors. The tool is available as chrome <a href=\"https://chrome.google.com/webstore/detail/coolors/mgajdijnadmkoapndjaacifihabcnfgd\">extension</a>, an <a href=\"https://creative.adobe.com/addons/products/12124#.WR0z9OuGPIV\">Adobe Add-on</a> and as an <a href=\"https://www.apple.com/itunes/download/\">iOS app</a>.</p>\n<h4 id=\"2-material-ui-colors\" style=\"position:relative;\"><a href=\"#2-material-ui-colors\" aria-label=\"2 material ui colors permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>2. Material UI Colors</strong></h4>\n<p><a href=\"http://materialuicolors.co/\">Material UI Colors</a> is from panda network which specializes to create color palettes for material designs. You can find a copy-paste option in the app for better color matching process. You can also try <a href=\"http://flatuicolors.com/\">Flat UI Colors</a> (from the house of panda networks) for flat UI themes.</p>\n<h4 id=\"3-adobe-color-cc\" style=\"position:relative;\"><a href=\"#3-adobe-color-cc\" aria-label=\"3 adobe color cc permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>3. Adobe Color CC</strong></h4>\n<p><a href=\"https://color.adobe.com/create/color-wheel/\">Adobe Color CC</a> is a one-stop palette generator that allows you to generate color palettes with the help of its huge collection of color combinations (these combinations are created and curated by Kuler community).</p>\n<h3 id=\"choosing-the-right-background-color\" style=\"position:relative;\"><a href=\"#choosing-the-right-background-color\" aria-label=\"choosing the right background color permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Choosing the Right Background Color</strong></h3>\n<p>Have you ever picked a wall color? If you have, you can easily relate to the process of selecting the website background.</p>\n<p>When you are about to choose a wall color, you will make sure that the wall color adds to the comfort of the room. Not too strong and not boring as well. Moreover, you will choose different colors for painting a summer cottage and a retail store. Similarly, while choosing the right background color for your website entirely depends on the intent of your website.</p>\n<p>Thus, here I have divided the websites into three types on the basis of their intent.</p>\n<h4 id=\"1-e-commerce-or-content-driven-websites\" style=\"position:relative;\"><a href=\"#1-e-commerce-or-content-driven-websites\" aria-label=\"1 e commerce or content driven websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>1. E-commerce or Content Driven Websites</strong></h4>\n<p>You will find that majority of the content driven or e-commerce websites have neutral or white background. The intent of such websites is to promote their products or ideas rather than flashing the background of the website. Hence, the prominent and accent colors provide focus and personality to your website whereas the neutral background keeps your customers focused on your products or content.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 46.30769230769231%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAIAAAC9o5sfAAAACXBIWXMAAAsTAAALEwEAmpwYAAACFElEQVQoz1WQy08TYRTFZ+3/4FZdYU2rCaCi8RHRBY0hcYNu3LlTlFgkIj7QgBgi0cQYN5JCte30rUW0IIlYQ9BaRUozj2+mM0M7Mx2m82pn2k79iC705peT3JNz7uIizoPdjs7Tu5zH+wfveEbGRscf37g9PnDzgefWGNSrQ/f6h+57hkd63Mf2uE62Hz7qbO9o29+xe1+Xo/MMMje/EI4l/Wg8tbB099GztlOXJp6+DEcSrwPRV/7wjA+d9aHemaB3NoSG4vH4O38g5g9EQ6FYJJJAWq2WbdtQiyw7NTnpcl8ZfPKmUbegDc0Sx2C5X+vZ78RGjgOkIW81Dd3SVVNTLU1FhFJJLAmmpk370B3dnr1nrx04N/zCn7I0WeJFmgSJaGw+Obf4IZVZ/SrxPM9yPLdNkWEQfrPIFhgcw/Hc+qGBacRxfqfL3XVh9P3HtMBxNAAr6S/pT8vp5c/ZbxmGogFBUDiEJDFiu7zJsAROwqAXTR7pu36i92Lf5YcTz4NcoUCRAKZJHM/n8gRG0IAG0CEBlscAAIhl1gxNVZWKoWnNulXVVbhtlcv1RgOiyLLA82VRLAuCoet/vvN3bBsxa6YkVSiqIAhls2rJcmVtZbWmKNzPjETiVr2uq4qmKPC0oWu23fynayNVVVBFUhGoikDU1KIoyUuRmMrSP94Gi2tZGKIIbDGVym/kzWq12fyv/BtwDqNcCxtxZwAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology for E-commerce or Content Driven Websites\"\n        title=\"Color psychology for E-commerce or Content Driven Websites\"\n        src=\"/static/7e0d79b1279c31e085e6ca52060ac80f/e5715/Color-psychology-for-E-commerce-or-Content-Driven-Websites.png\"\n        srcset=\"/static/7e0d79b1279c31e085e6ca52060ac80f/a6d36/Color-psychology-for-E-commerce-or-Content-Driven-Websites.png 650w,\n/static/7e0d79b1279c31e085e6ca52060ac80f/e5715/Color-psychology-for-E-commerce-or-Content-Driven-Websites.png 768w,\n/static/7e0d79b1279c31e085e6ca52060ac80f/21482/Color-psychology-for-E-commerce-or-Content-Driven-Websites.png 1350w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<h4 id=\"2-corporate-websites\" style=\"position:relative;\"><a href=\"#2-corporate-websites\" aria-label=\"2 corporate websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>2. Corporate Websites</strong></h4>\n<p>Corporate websites are basically built with the intent of promoting services or promoting the brand. In both cases, different kind of colors would be used as the background color.</p>\n<h4 id=\"3-while-promoting-a-brand\" style=\"position:relative;\"><a href=\"#3-while-promoting-a-brand\" aria-label=\"3 while promoting a brand permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>3. While Promoting a Brand</strong></h4>\n<p>While you are promoting a brand, use your prominent colors as a part of your background. This will improve your brand recognition. You can take a look of our previous example <a href=\"http://www.coca-cola.co.uk/\">Coca-Cola’s</a> site to see how wisely and strongly they have used red on their website.</p>\n<p>In case, you have a bold prominent color, then you can use less intense shades of the prominent colors. Here’s an example of how <a href=\"https://www.cadbury.co.uk/\">Cadbury</a> does it:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 47.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAIAAAC9o5sfAAAACXBIWXMAAAsTAAALEwEAmpwYAAACMElEQVQozwElAtr9AFo4G2dCE1g5OG1arHZirFY+m1I6l1pDmlU9mVhAmFZAlVQ/lVVAllU/lUkwiUguh000kVg5Ol46F1c1GQBhPR5aMlhOOHJBN288LHE3JXA4JnQ7KXk/LHs+Kn9FL45SN6BWO6VNNpc+LX0zJGc4JnVWNzdeORZVMxcAXjocWTJSRTZmFBE2JB5BKSFKMCVZNyloOChwSDaHW0GabVOyYUmwSiqFSi59OCdoIxlQTTEoYTwaVDIWAFU0F104D1pJOE1Ha0xFZV5XeVFHdUw9fFhBhmRMkW9YmHdlpXJjmEgecVk2hlw9hWBKg1c6L146GFUzFwBPLxNTLxFXQThnYX9XUW5RSm5eVX5mWotlTIllUJ5aRJ1TP4dgS3NZKXVfOoZkRpBxT5VYNC5bOBZVMxcASy0RVTIRSzIsKyVNQTpbRz5mTUNzUUJ+Pyh1RC1+Vj6QY0yvWzqYViVwcUZ4Zjl7SyFuRSgiWjcWUjEWAEkrEFQyEUsvLRcQPSwlS4aBm3pylzMjaDMibT8pdGBNklhDk0ovd0sof1U1cFAdcDkYWzYhFUknBU8vDwBFKQ5PLw5JLissJk4tJ0w5MVo9MmU/MW5HN3hGNX1MOYlXQJ1dRqpWQ51BM3o+K14xI1FLNzVjSDJDJhkAQycORSYIZEw7vbm9yMTHta++uLLCxL7JxMTS0c/ZycHUzMTZt6rBr56wrp+0wLrNt6/HjXiAknllTSlzWH+3Uc52rpoAAAAASUVORK5CYII='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology behind Cadbury\"\n        title=\"Color psychology behind Cadbury\"\n        src=\"/static/59d312bf12b633b8542f75b5d5e0f01b/e5715/Color-psychology-behind-Cadbury.png\"\n        srcset=\"/static/59d312bf12b633b8542f75b5d5e0f01b/a6d36/Color-psychology-behind-Cadbury.png 650w,\n/static/59d312bf12b633b8542f75b5d5e0f01b/e5715/Color-psychology-behind-Cadbury.png 768w,\n/static/59d312bf12b633b8542f75b5d5e0f01b/c367c/Color-psychology-behind-Cadbury.png 1349w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>You can use the above discussed tools to choose different shades of your prominent colors that will go well with your website’s background.</p>\n<h4 id=\"4-while-promoting-a-service-or-product\" style=\"position:relative;\"><a href=\"#4-while-promoting-a-service-or-product\" aria-label=\"4 while promoting a service or product permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>4. While Promoting a Service or Product</strong></h4>\n<p>Now, when you want your services to be the attention grabbers, use light colors for background as it will automatically highlight the content (product) on the page. Our web designers have done a good job highlighting our services.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 47.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAIAAAC9o5sfAAAACXBIWXMAAAsTAAALEwEAmpwYAAABP0lEQVQoz2VRSU4DMRCc/9+58gAOiBMfQMqBD8AtEckwIcssHtu9uT20PYmEhE/VS1V3tZtlyV70cB2nyS0W5KyqPoAwv36cH98PLiIRASCyZE2b7fCw2X+evDU3SBwiXKfZx6g5s4jzYQ6gmj3ycfD95K3BFAGpd97VErFY2CCSBz57Es0mZuSfmS6el7qGA/52iKIWBdNySKlgEYkADSG5SLsejFOzaYzsMOXC1fOM18DmxSLTNWaBNzLeJncz9dGalpRSrZan9a3Y+Fa6V/6QC79exTosa2CVSKqGLZPrY2brFCsVXMl1bezGOEOZbLu1g78GqtP04mI7xtXzDNQOYQQmE2X28e55P6L5XD0bWK9SLswlXG85RTo6yhUXYZHGPtB2EFWphGIs5/+ey6GytgGed93LV/e0bd/a0y+n3Ao+5SEIqAAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology while Promoting a Service or Product\"\n        title=\"Color psychology while Promoting a Service or Product\"\n        src=\"/static/8637ebe52944ef9bce7f0defd6774d72/e5715/Color-psychology-while-Promoting-a-Service-or-Product.png\"\n        srcset=\"/static/8637ebe52944ef9bce7f0defd6774d72/a6d36/Color-psychology-while-Promoting-a-Service-or-Product.png 650w,\n/static/8637ebe52944ef9bce7f0defd6774d72/e5715/Color-psychology-while-Promoting-a-Service-or-Product.png 768w,\n/static/8637ebe52944ef9bce7f0defd6774d72/21482/Color-psychology-while-Promoting-a-Service-or-Product.png 1350w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://loginradius.com/\"><strong>Source</strong></a></p>\n<h4 id=\"5-creative--stylish-websites\" style=\"position:relative;\"><a href=\"#5-creative--stylish-websites\" aria-label=\"5 creative  stylish websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>5. Creative &#x26; Stylish Websites</strong></h4>\n<p>When it comes to creative or stylish websites (creative, beauty, restaurant, design and fashion industries), you can use any colors in the background of your website. You can design a black background to provide a luxurious look or you can inspire your visitors with a rainbow background. Don’t lose your content’s visibility for the sake of charm on your website. Here’s a great template you can use for your creative website.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 450px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 73.11111111111111%; position: relative; bottom: 0; left: 0; background-image: url('data:image/jpeg;base64,/9j/2wBDABALDA4MChAODQ4SERATGCgaGBYWGDEjJR0oOjM9PDkzODdASFxOQERXRTc4UG1RV19iZ2hnPk1xeXBkeFxlZ2P/2wBDARESEhgVGC8aGi9jQjhCY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2P/wgARCAAPABQDASIAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAAAAMEAgX/xAAVAQEBAAAAAAAAAAAAAAAAAAAAAf/aAAwDAQACEAMQAAAB4lUOoYJK/8QAGBAAAwEBAAAAAAAAAAAAAAAAAAEDAhH/2gAIAQEAAQUCXERjmma5WKHRs//EABQRAQAAAAAAAAAAAAAAAAAAABD/2gAIAQMBAT8BP//EABQRAQAAAAAAAAAAAAAAAAAAABD/2gAIAQIBAT8BP//EABsQAAIBBQAAAAAAAAAAAAAAAAABEQIgITJB/9oACAEBAAY/AtZHLyOlcs//xAAbEAADAAIDAAAAAAAAAAAAAAAAAREhQRAxYf/aAAgBAQABPyF9C1u4HRJPZxAqKVhsY33T/9oADAMBAAIAAwAAABBoz//EABQRAQAAAAAAAAAAAAAAAAAAABD/2gAIAQMBAT8QP//EABURAQEAAAAAAAAAAAAAAAAAAAEQ/9oACAECAQE/EGf/xAAcEAEBAAICAwAAAAAAAAAAAAABEQBBITFRYZH/2gAIAQEAAT8QoKBQoU742Y0lPUhH29by/wAkCrecmQH7iTA+NOUStK5//9k='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"color psychology for creative &amp; stylish websites\"\n        title=\"color psychology for creative &amp; stylish websites\"\n        src=\"/static/85c1306f76599ec3c3253a652fcc6568/20e5d/color-psychology-for-creative-stylish-websites.jpg\"\n        srcset=\"/static/85c1306f76599ec3c3253a652fcc6568/20e5d/color-psychology-for-creative-stylish-websites.jpg 450w\"\n        sizes=\"(max-width: 450px) 100vw, 450px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://blog.spoongraphics.co.uk/wp-content/uploads/2008/doodle-websites/24.jpg?ver=1553881376\"><strong>Source</strong></a></p>\n<p>In a nutshell, the best background for your website will make your content more visible and will render a good feeling to your visitors while browsing. And still if you are struggling with the background color, use a light color for your background. Don’t expect your website to look inspirational enough, however, your content will be noticed.</p>\n<h3 id=\"some-very-common-yet-important-tips\" style=\"position:relative;\"><a href=\"#some-very-common-yet-important-tips\" aria-label=\"some very common yet important tips permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Some Very Common Yet Important Tips</strong></h3>\n<ul>\n<li>Avoid using too much colors on your website. It may confuse your visitors. Moreover, it looks ugly.</li>\n<li>Don’t just use the color because that color is your favorite pick. It may not help the website.</li>\n<li>Do use some white spaces on your website. It improves your SEO, readability and ranks on sites like Google.</li>\n<li>Color is your visitor’s navigation guide. It will navigate them to important parts of your website. So, choose them wisely.</li>\n<li>The finest of designs cannot stop your customers to leave your website if they feel they need to stress out their brains to acquire information. They will look for some other sites that don’t. Hence, keep it simple and informative.</li>\n</ul>\n<h3 id=\"examples-of-some-awesome-websites\" style=\"position:relative;\"><a href=\"#examples-of-some-awesome-websites\" aria-label=\"examples of some awesome websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Examples of some awesome websites</strong></h3>\n<p>Here are some websites you can take a look for some inspiration.</p>\n<h4 id=\"1-departika\" style=\"position:relative;\"><a href=\"#1-departika\" aria-label=\"1 departika permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>1.</strong> <a href=\"http://www.departika.com/\"><strong>Departika</strong></a></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 48.3076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAIAAAA7N+mxAAAACXBIWXMAAAsTAAALEwEAmpwYAAACbUlEQVQozwFiAp39APLKyfLKyfHLyvLLy/LLy/LLyvLLyu/Gxu7FxO/Ew+/GxfDIx/PLy/TMzPPMzPPMy/PMy/LKyvLKyfHKyQDfsLDfr6/fravdrKrdrKrfrqzfrqzfrq3fra3fpqXcqajbq6nbq6rZqajbqqnbq6naqqndrq7fsLDfsLAA1t/g29vT2LaZuIttrnxevY5v1auL37iXzKCAwJFzrXhYimJMem1iUTcnY0k4b1NAYUc2rKmj3ujo1t3cANfY2N7Vzua8nc6VdKNoSmFALp5yWeSvjuGqiMWHY4ZYP3dPPIJgT1AlEFIuHEwuH1gtGK6dlODi49fW1QDX2drf1s7wzK/uv56qel9JMiaOY0vapYPKoYaOa1WNYEitdFd8ZlpvRCuMWTrIrIZ1Ujulm5bh5OTX19YA19rb3tTM8c2x8c2w3qyMn21ShFlCl2xTpIJsyJx/xoZjvoFjcWBXiV5Ar4Jf/d+umXdWlZCP5ebm19fWANfa29zRx/HHqPjTt+C1mKN3XXpUQINaRMaUdOazkMmPbMaLbG5cU2dFLZtuTtm8k3dbQ5CMiuXn5tbX1gDZ3N3Vx77PooS/n4irjnixiW+odlqqblDEh2XZpIHVnHrKknSAZVc9HQxJLh5EMidFKBqpnJXg5OTX19YA297gzr21mWtSvJd95bqb57SSzZNwuoBdvoll2aeE57uZ2KyMf2FUOBYJMhwTRiUYUiUQq5uT4eTl19fWANja2tjT0N7Nwuze0+zg1ure1d7PxcSJiMyKi8WSj8eVk86Okr+zpbOrk7uvmLywmLyuk87KwNrb3djZ2P3me/TKC/XRAAAAAElFTkSuQmCC'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Departika\"\n        title=\"Departika\"\n        src=\"/static/0d0bb9f82cf17df93da73893974ec18f/e5715/Departika.png\"\n        srcset=\"/static/0d0bb9f82cf17df93da73893974ec18f/a6d36/Departika.png 650w,\n/static/0d0bb9f82cf17df93da73893974ec18f/e5715/Departika.png 768w,\n/static/0d0bb9f82cf17df93da73893974ec18f/e5ca1/Departika.png 1332w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Minimal yet effective</p>\n<h4 id=\"2-magoz\" style=\"position:relative;\"><a href=\"#2-magoz\" aria-label=\"2 magoz permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>2. <a href=\"https://magoz.is/\">Magoz</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 45.230769230769226%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAIAAAC9o5sfAAAACXBIWXMAAAsTAAALEwEAmpwYAAABl0lEQVQoz22PTUsCURiF54e0KQpsYakz1sIcMqIoxDApg9SZLB2thbToY1MEQRsp2vULatOmbbtaROsyWgSRNaVpZXPvTDOOzkevWlQSHA4P596HyyVM0zRMUzI0gIparlbKALIsQZ/e3Z3zDwCKIhmGUZbFqqoAKLKoa1XYifybnnvTb4sa9GPR4Ata/lXjn9Viycjc4yteAuALau5Vh/GxUIHTh7z69KKBSPTFMYSOI3dCGuSyAwsld1KlOeyKYU9Sgrg4TCfEvnrTCQzg5sSGRTgiqB7BHpboWHZo7rjTf2mNKCQsEdQVQt2hr4ZYp5EtjL4VRFAsaoRkBCZdndlG3vAhFzqgGME5g0ZSeDQlehfxyKI4nMKBFdyfrGkN5beMJtbQ8Ia5s3xylt7rnv0A37cujG8KgQ00tiT6V0X/CnbFazeb5ZofeSejOuU7cnnme6KygxU6dnnLftaylSPDiGQRfMTB/Nz/I1Os4IzKtqmblrZee/DaGVUcjGBjfp5qSpP8DoJ98qK1nbIHM8C1hf3fhHwCzrdHvmgHlb0AAAAASUVORK5CYII='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Magoz\"\n        title=\"Magoz\"\n        src=\"/static/326ac1134a44304aed84fa0f66271380/e5715/Magoz.png\"\n        srcset=\"/static/326ac1134a44304aed84fa0f66271380/a6d36/Magoz.png 650w,\n/static/326ac1134a44304aed84fa0f66271380/e5715/Magoz.png 768w,\n/static/326ac1134a44304aed84fa0f66271380/d4377/Magoz.png 1294w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Vibrant</p>\n<h4 id=\"3secretkey\" style=\"position:relative;\"><a href=\"#3secretkey\" aria-label=\"3secretkey permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>3. <a href=\"https://www.secretkey.it/\">SecretKey</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 43.99999999999999%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAIAAAC9o5sfAAAACXBIWXMAAAsTAAALEwEAmpwYAAACC0lEQVQozzVPa0/aYBjtb9pEsVKQbYIgLSUwHaCjtIUWKwRc2UUmRpzT6dCq7MK1VbmqmCX7sCwxy1paQBaz/Yh934f9gb1s2ZPnw8k5zznveaGHTn5+ZjmAJ+PkxoLzkR9L3L/HYYYwOhHCjYxrMoIiLIaEAeM0Mu47ixjCAAyY2akoFMB50v2EffCc8jx1AsHIDmWEwU2sD0vQHp7BYyhgJv6bDUMzuPTZ4pBdT9rHSNto0D5GoTCNjROonsT0hAuh7eaoQDBq3O+2xFA49K8OiAAL8Mw4DYEMsC4T6zAwAWtk3celvdw2EaWt7JSJuxJSv/KJGLMyraNw01+Pnho+A1IQBgLtQZIDDllHCPDz/RflnbX8cmhz7u6Sxbx0mYn93KUiNG/V0U5j2DXJ8pFMit/y2mLAAjlg2nKLWFxIPUu8BEHTI0GbjsRg2gEzfjPxQ0j+Pt/a9M4HsMeZ5B7lSV60L87arXg4bRuloDlrdDX5qlqrVxvV7O5RPLTGBVezqf3w7Ap62yul1z+IBd4VOJaa/X7n4KBQq9crorj3Ogf6Qu9yxfP2WaUilkrl09OTVqvRbDbeHhaOsvn8YbH2JtcUdt7npctPHz93vkjVE0k8LpbKoiRubwiQpqqyLCuKomlqV9MA6Cidble7uRl8/9Yb9DW1f93VOqqmDK57svwVqMNRlG5P+wNibfaewfaxQAAAAABJRU5ErkJggg=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"SecretKey\"\n        title=\"SecretKey\"\n        src=\"/static/975f9c6dc780077aae941521e8ecd0c0/e5715/SecretKey.png\"\n        srcset=\"/static/975f9c6dc780077aae941521e8ecd0c0/a6d36/SecretKey.png 650w,\n/static/975f9c6dc780077aae941521e8ecd0c0/e5715/SecretKey.png 768w,\n/static/975f9c6dc780077aae941521e8ecd0c0/3d405/SecretKey.png 1348w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Attractive combination of multiple colors</p>\n<h4 id=\"4softwaremill\" style=\"position:relative;\"><a href=\"#4softwaremill\" aria-label=\"4softwaremill permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>4. <a href=\"https://softwaremill.com/\">Softwaremill</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 48.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAIAAAA7N+mxAAAACXBIWXMAAAsTAAALEwEAmpwYAAACMUlEQVQoz0WMW2/SABSA+982Ni4tlI7aUtrSAuMyGJet47Zpoi+a7FLoBbC00DpczDLmqy8+mvgb1BdjfPFF2AYtLYpFHzz5cvLlJN8BZrPF968/7u8fJpM7l9/rWTmOM5vNTdOam5ZlLVzWPjddrIUznd5NptPVagWcZ0fnmVd8bnSWvXxRuDqtXD/LXzXTBpccHGaNRuW6fnhT48YcNy5xN6XquNi4zdVusvVxrvkWaGy3atvt6lbryNsuQdI+KKU3L9iNC2aLj0MSifSISD+KqhimIZgawlWI0PzkYCumbRIq8BiWm5DcgKRGuFPd6XHhzgEsF2EpC0t5Wo34eRrvJ9lLmjYIWsfjQzRhIEkjlNChhA6cBOUjv1iDpDosV8PdA7hThOUCIjfTejk9LCS0JKGwtEZSuhtj5ABlDSRhhFgdZHWA8wtln8AFxCNQPAzK5aC8B4pxz0Xv9N3HD1806T0JCjGkE8WUKDXEqAHK6P/jakCs+AQX90U5IBRBMQ9Ju6DIwKLYvk09kqiQTKI9fKdLkOs4Eh+GGT2YMEBmCBz7hZKHz23wBQ+f9/B7nlbaKzC+Nunl6YiAbp8jm2fhQBuGZQRVYLwPYopvp+sLy76gCDyPqU8wpR55+TSqnmD9Y1xpxtQKoZajyh6u7EaVDKXuUloqPkilXzOZEZ0bsftvYvEBQamAs1hac9u2HMdeur7ef7H/ubNcWI5pLmz34uIsTdP+/Onbz+mD7fz6A6JoTfnQkoVGAAAAAElFTkSuQmCC'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Softwaremill\"\n        title=\"Softwaremill\"\n        src=\"/static/0fb55f05e4cc8463a33c37de3168caa8/e5715/Softwaremill.png\"\n        srcset=\"/static/0fb55f05e4cc8463a33c37de3168caa8/a6d36/Softwaremill.png 650w,\n/static/0fb55f05e4cc8463a33c37de3168caa8/e5715/Softwaremill.png 768w,\n/static/0fb55f05e4cc8463a33c37de3168caa8/b1584/Softwaremill.png 1342w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Beautiful yet elegant</p>\n<h4 id=\"5spektrum\" style=\"position:relative;\"><a href=\"#5spektrum\" aria-label=\"5spektrum permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>5. <a href=\"http://spektrummedia.com/\">Spektrum</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 48.76923076923077%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAKCAIAAAA7N+mxAAAACXBIWXMAAAsTAAALEwEAmpwYAAACZElEQVQoz3WP20vTcQDFf/9DQU89iUGhEbWUUAsdtDm1i5e2lfZg5KTmrYn5oCVJGiMQp5jlUmN5maU5tenWRZvzjro0za3NCrGWa01zv/2+39/ve2n13uE8fDhwOBxmy+P5uf4ZcYD+RwRRAijhKYEUQ4rCBhTxVICUqQts1Ae+tkJvO/IbkHcIfzJj5yB22dDiAp6YxTOLyObhTeuCySMMbKJnP1D3d8How11+3Mns4T17efc+sLwfzEVCuwgOJ8POLKjPFRrLyR0t0TSTa5308kuaMkqTJmj8PI1ZoUedNNpJo5hIzh3BeSJDruPEkTTbHPfFlEHMRVB/1f/w+rc63VZJi19dv1nY41NafBKzV2b1SW0b8Wt8vJueZA7AtQjOdTC0HEU/xhpuyexaBTVl80aVu0YzV3BzqajKkaebP9++dqZpRmZYSOz7kNAxGefYjXPSU8zhwPQxbiYKvD8krMbqy1NHq5W0XwmMJWzD3e2KmuDtht+lXYFLfTuZA7uZ7zjpdEg8zYlniWSSFTMx22Mn4LiImxLR1cTeyoSl9nRqUYNHeUF98a6ukS19HCxoCRb3c8qxUPLbkMzGSuxAYscpY6yUEfNvRGAqjQyfnmuI1uQcqVWf2+rIwwbVr6Yyf+39QNmD7cK2HVXfzoXXbEp42cymW/mMKSwdJ2mMHD5PBy+UuFf2qjrVVis1VZxdaQzfLgP1dULlPb66iS8fxgoLyrJg+QhRWIn8LyDFCJYzV6BBDVtyYNdFaFTTJyr8VAF6cv+FVYJWJ1S0CppulB8uGJGqTbgxiHKGcHYYuoX8P2k0oRWffUyMAAAAAElFTkSuQmCC'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Spektrum\"\n        title=\"Spektrum\"\n        src=\"/static/d72e081ac24afcee5e160e1a6c685013/e5715/Spektrum.png\"\n        srcset=\"/static/d72e081ac24afcee5e160e1a6c685013/a6d36/Spektrum.png 650w,\n/static/d72e081ac24afcee5e160e1a6c685013/e5715/Spektrum.png 768w,\n/static/d72e081ac24afcee5e160e1a6c685013/a7a19/Spektrum.png 1323w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Wise usage of neon colors to give it modern touch</p>\n<h4 id=\"6enterprise-england\" style=\"position:relative;\"><a href=\"#6enterprise-england\" aria-label=\"6enterprise england permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>6. <a href=\"http://enterpriseengland.org.uk/\">Enterprise England</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 44.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAJCAIAAAC9o5sfAAAACXBIWXMAAAsTAAALEwEAmpwYAAACEklEQVQoz2P4////jz9/Hj5++h8J/P33D4L+AEkw+Adi/IEwgACijOH/v38fvn2//eDJPyTN/8A6gSIQzT9+/gSi79++/fjx49evX0Dyzx+QQQwrl85bu2rJtn37Tp48cuTooV0HDh47fXrfseM7Dx/bc+jgrn37Dh8/tnP/vp071m9cu3TPvt2Hjx7Zf+jAzj27tu7YzDBzRv/s2ZMnz50zad6sSfNntU2d1jt7TseU/gkTqqdOqJo6sWbu9LrZ82c211dO6W/bsHn9jt27d+7Zs33XjpVrVzM0ebi2ujp3Ojh229n3mpktT0lu6J2QVFOfUV8XVV7um5ObWFfbM3VyVUXFtCm9G7ZsOHD48IrVa6bPnL1x61aGPBb2MibWFE6eOH7BMBa2KbHxHVNn+Fc05fdMTi2uCk3NqeqauHLjph0LFq1fumT9lk3bdu9OSc+KCI9euHgRQ5GIWL2MrIeisqW2nqWmToCjU0NLc3xhYW5tjU94TEhsUkRM9KoVCyY21WelZPgGhvqbWcgLi0tKyMRHRjDM62leOqM3PTo8xNU1xM01LMB/8fxp8ye0xFfWymQ3KBW0qjm4W5qY2Di4+IYlqRtYqyqp8nLzCwuJxUWEMoSHBkZFxRmbWImLSUqIS8rIKgeHxGYWNmpb+HBwcouKSPIJSrBw8AiLy7mHFrsH5+uau0kp6UrJqRkZWwMAudUxQT4ZaiMAAAAASUVORK5CYII='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Enterprise England\"\n        title=\"Enterprise England\"\n        src=\"/static/926253f4549c399728e653075b3f38f0/e5715/Enterprise-England.png\"\n        srcset=\"/static/926253f4549c399728e653075b3f38f0/a6d36/Enterprise-England.png 650w,\n/static/926253f4549c399728e653075b3f38f0/e5715/Enterprise-England.png 768w,\n/static/926253f4549c399728e653075b3f38f0/3d405/Enterprise-England.png 1348w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Beautiful color combination</p>\n<p>While picking up a color scheme, you should always put your audience first and not your favorite color. Choose colors to make a long lasting connection and that’s how you will stand out from the competition. And although, choosing color scheme is an act of organization, objective and matching, don’t get daunted from adding different colors to your website. Have fun and let your content shine on your webpages.</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"May 19, 2017","updated_date":null,"description":"Don't Know Which Colors will suit your Website? Here's the Complete Guide about Color Scheme that will help you choose the best color palette for your Site.","title":"A Complete Color Scheme Guide For Your Website","tags":null,"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.2578616352201257,"src":"/static/0aaf39f016d1c78c29d1128b6f2be691/14b42/A-Complete-Color-Scheme-Guide-For-Your-Website.jpg","srcSet":"/static/0aaf39f016d1c78c29d1128b6f2be691/f836f/A-Complete-Color-Scheme-Guide-For-Your-Website.jpg 200w,\n/static/0aaf39f016d1c78c29d1128b6f2be691/2244e/A-Complete-Color-Scheme-Guide-For-Your-Website.jpg 400w,\n/static/0aaf39f016d1c78c29d1128b6f2be691/14b42/A-Complete-Color-Scheme-Guide-For-Your-Website.jpg 800w,\n/static/0aaf39f016d1c78c29d1128b6f2be691/a7715/A-Complete-Color-Scheme-Guide-For-Your-Website.jpg 1000w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Rakesh Soni","github":"oyesoni","avatar":"rakesh-soni.jpg"}}}}]},"markdownRemark":{"excerpt":"Identity is evolving, and developers are at the forefront of this transformation. Every day brings a new learning—adapting to new standards…","fields":{"slug":"/identity/developer-first-identity-provider-loginradius/"},"html":"<p>Identity is evolving, and developers are at the forefront of this transformation. Every day brings a new learning—adapting to new standards and refining approaches to building secure, seamless experiences.</p>\n<p>We’re here to support developers on that journey. We know how important simplicity, efficiency, and well-structured documentation are when working with identity and access management solutions. That’s why we’ve redesigned the <a href=\"https://www.loginradius.com/\">LoginRadius website</a>—to be faster, more intuitive, and developer-first in every way.</p>\n<p>The goal? Having them spend less time searching and more time building.</p>\n<h2 id=\"whats-new-and-improved-on-the-loginradius-website\" style=\"position:relative;\"><a href=\"#whats-new-and-improved-on-the-loginradius-website\" aria-label=\"whats new and improved on the loginradius website permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>What’s New and Improved on the LoginRadius Website?</h2>\n<p>LoginRadius’ vision is to give developers a product that simplifies identity management so they can focus on building, deploying, and scaling their applications. To enhance this experience, we’ve spent the last few months redesigning our interface— making navigation more intuitive and reassuring that essential resources are easily accessible.</p>\n<p>Here’s a closer look at what’s new and why it’s important:</p>\n<h3 id=\"a-developer-friendly-dark-theme\" style=\"position:relative;\"><a href=\"#a-developer-friendly-dark-theme\" aria-label=\"a developer friendly dark theme permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>A Developer-Friendly Dark Theme</h3>\n<p><img src=\"/f46881583c7518a93bb24e94c32320de/a-developer-friendly-dark-theme.webp\" alt=\"This image shows how LoginRadius offers several authentication methods like traditional login, social login, passwordless login, passkeys and more in a dark mode.\">    </p>\n<p>Developers spend long hours working in dark-themed IDEs and terminals, so we’ve designed the LoginRadius experience to be developer-friendly and align with that preference.</p>\n<p>The new dark mode reduces eye strain, enhances readability, and provides a seamless transition between a coding environment and our platform. Our new design features a clean, modern aesthetic with a consistent color scheme and Barlow typography, ensuring better readability. High-quality graphics and icons are thoughtfully placed to enhance the content without adding visual clutter.</p>\n<p>So, whether you’re navigating our API docs or configuring authentication into your system, our improved interface will make those extended development hours more comfortable and efficient.</p>\n<h3 id=\"clear-categorization-for-loginradius-capabilities\" style=\"position:relative;\"><a href=\"#clear-categorization-for-loginradius-capabilities\" aria-label=\"clear categorization for loginradius capabilities permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Clear Categorization for LoginRadius Capabilities</h3>\n<p><img src=\"/e5358b82be414940f3fb146013845933/capabilities.webp\" alt=\"This image shows a breakdown of all the LoginRadius CIAM capabilities, including authentication, security, UX, scalability and multi-brand management.\"></p>\n<p>We’ve restructured our website to provide a straightforward breakdown of our customer identity and access management platform capabilities, helping you quickly find what you need:</p>\n<ul>\n<li>Authentication: Easily understand <a href=\"https://www.loginradius.com/blog/identity/authentication-option-for-your-product/\">how to choose the right login method</a>, from traditional passwords and OTPs to social login, federated SSO, and passkeys with few lines of code.</li>\n<li>Security: Implement no-code security features like bot detection, IP throttling, breached password alerts, DDoS protection, and adaptive MFA to safeguard user accounts.</li>\n<li>User Experience: Leverage AI builder, hosted pages, and drag-and-drop workflows to create smooth, branded sign-up and login experiences.</li>\n<li>High Performance &#x26; Scalability: Confidently scale with sub-100ms API response times, 100% uptime, 240K+ RPS, and 28+ global data center regions.</li>\n<li>Multi-Brand Management: Efficiently manage multiple identity apps, choosing isolated or shared data stores based on your brand’s unique needs.</li>\n</ul>\n<p>This structured layout ensures you can quickly understand each capability and how it integrates into your identity ecosystem.</p>\n<h3 id=\"developer-first-navigation\" style=\"position:relative;\"><a href=\"#developer-first-navigation\" aria-label=\"developer first navigation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Developer-First Navigation</h3>\n<p><img src=\"/a8c155c2b6faf3d5f4b4de4e2b14d763/developers-menu.webp\" alt=\"This image shows the LoginRadius menu bar, highlighting the developer dropdown.\">   </p>\n<p>We’ve been analyzing developer workflows to identify how you access key resources. That’s why we redesigned our navigation with one goal in mind: to reduce clicks and make essential resources readily available.</p>\n<p>The new LoginRadius structure puts APIs, SDKs, and integration guides right at the menu bar under the Developers dropdown so you can get started faster. Our Products, Solutions, and Customer Services are also clearly categorized, helping development teams quickly find the right tools and make informed decisions.</p>\n<h3 id=\"quick-understanding-of-integration-benefits\" style=\"position:relative;\"><a href=\"#quick-understanding-of-integration-benefits\" aria-label=\"quick understanding of integration benefits permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Quick Understanding of Integration Benefits</h3>\n<p><img src=\"/b2f9a964a2da0ea83e2f8596b833bba7/we-support-your-tech-stack.webp\" alt=\"This image shows a list of popular programming languages and frameworks offered by LoginRadius.\"></p>\n<p>Developers now have a clear view of the tech stack available with LoginRadius, designed to support diverse business needs.</p>\n<p>Our platform offers pre-built SDKs for Node.js, Python, Java, and more, making CIAM integration seamless across popular programming languages and frameworks.</p>\n<h2 id=\"over-to-you-now\" style=\"position:relative;\"><a href=\"#over-to-you-now\" aria-label=\"over to you now permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Over to You Now!</h2>\n<p>Check out our <a href=\"https://www.loginradius.com/\">revamped LoginRadius website</a> and see how the improved experience makes it easier to build, scale, and secure your applications.</p>\n<p>Do not forget to explore the improved navigation and API documentation, and get started with our free trial today. We’re excited to see what you’ll build with LoginRadius!</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"February 21, 2025","updated_date":null,"description":"LoginRadius’ vision is to give developers a product that simplifies identity management so they can focus on building, deploying, and scaling their applications. To enhance this experience, we’ve redesigned our website interface, making navigation more intuitive and reassuring that essential resources are easily accessible.","title":"Revamped & Ready: Introducing the New Developer-First LoginRadius Website","tags":["Developer tools","API","Identity Management","User Authentication"],"pinned":true,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7857142857142858,"src":"/static/80b4e4fbe176a10a327d273504607f32/58556/hero-section.webp","srcSet":"/static/80b4e4fbe176a10a327d273504607f32/61e93/hero-section.webp 200w,\n/static/80b4e4fbe176a10a327d273504607f32/1f5c5/hero-section.webp 400w,\n/static/80b4e4fbe176a10a327d273504607f32/58556/hero-section.webp 800w,\n/static/80b4e4fbe176a10a327d273504607f32/99238/hero-section.webp 1200w,\n/static/80b4e4fbe176a10a327d273504607f32/7c22d/hero-section.webp 1600w,\n/static/80b4e4fbe176a10a327d273504607f32/1258b/hero-section.webp 2732w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Rakesh Soni","github":"oyesoni","avatar":"rakesh-soni.jpg"}}}},"pageContext":{"limit":6,"skip":882,"currentPage":148,"type":"///","numPages":161,"pinned":"ee8a4479-3471-53b1-bf62-d0d8dc3faaeb"}},"staticQueryHashes":["1171199041","1384082988","2100481360","23180105","528864852"]}