Naming Colors in Your CSS

Naming things in programming in hard. What you name things matters. Naming is communication. You want the names in your CSS to be easy to understand. They need to quickly communicate what you were thinking.

What naming convention do you use to name your colors in CSS? CSS can be difficult to maintain. Save yourself and others time by picking an easy naming convention. Your choice can save you hours of debugging in the future.

Naming Your Colors IN CSS
Image by Myriams-Fotos from Pixabay

Choose a Naming Convention

There are two types of naming or variable categories in CSS. Descriptive or functional. A descriptive name describes the value. A functional name describes a use. If you want a variable to display a blue color, you might name it --color-blue. When you want a variable for a specific purpose like an accent color, you might name it --color-accent. Use both variable categories to make it easier to maintain your custom color palette.

Naming Colors

Colors have tints, shades and tones. How do you know what to call each one? Use The Color API to find out what to call the colors in your color palette. You can put in a hex code or RGB value to identify your color.

Start with your color palette

It’s good practice to limit the number of colors in your design. Use descriptive names to define your color palette. Then, use functional names to further define your styles.

root: {
brand-blue-color: #0000ff;  
brand-green-color: #008000;
}

.article-title {
color: var(--brand-blue-color);
}

.primary-button {
color: var(--brand-color-green);
}

When you need to change your colors, you can easily do it. Simply change the color code. If that won’t work, create a new descriptive name and use that instead. Whatever strategy you choose, make it simple so you or someone else can easily make updates in the future.

6 Migration Tips

How do you migrate your solution? Whether you are moving to the cloud or a new server, migrating is easier said than done. You’ll need to carefully plan it to make sure you do it right. Use these 6 migration tips to plan your strategy.

6 Migration Tips

Choose a migration type

These are the types of common migration strategies to choose from:

  • Rehosting: Also known as "lift and shift". You move your application to the cloud with minimal tweaks and changes.
  • Replaforming: Same as Rehosting. You move your environment to the cloud. Then, make some adjustments to optimize it for the cloud.
  • Repurchasing: Move your customized, legacy application to a brand new, cloud-native product. You’ll need to train your team on the new platform.
  • Refactoring: You’ll need to change your apps. In some cases, you’ll need to rebuild from scratch. Make changes to take advantage of the cloud without compromising the core features.
  • Retiring: Some of your applications may no longer be useful to you. You’ll need to decide which applications you can stop using.
  • Retaining: Are you ready to migrate to the cloud? You may not be ready to migrate. If you aren’t, you should reconsider migrating at a later date.

Assign a Migration Architect

Pick a person who can guide or execute all technical aspects of the migration. They’ll need to define the necessary refactoring, data migration, tools and strategy.

Understand the scope of your migration

Your migration project needs to manageable. You’ll need to know what you want to accomplish and how to get there. Make sure you give yourself plenty of time. By defining your migration project scope, your team can manage their work without delays.

Find the right integration partner

Look for a partner who has moved before. They can help you plan your move and guide your through the process.

Document your processes

Make sure you have documented your processes. If you need to make changes, it is good to know where to start.

Test and test again

No move is perfect. You may miss something in the first round of testing. Make sure you create a checklist of things to test. Test them in many environments.

7 UX Mistakes to Avoid

A bad user interface can lead to a bad user experience. Everyone has used apps and websites that are difficult to use. Or even confusing. Bad design choices can lead to a bad user experience. Choices like inconsistency, bad color decisions, too many fonts and confusing UI.

7 UX Mistakes to Avoid

Photo by Alvaro Reyes on Unsplash

What UX mistakes can you avoid in your next app?

1. Too many fonts

How many fonts are too many? Sticking with a couple of fonts makes it easier to read. Two or three. Use one or two fonts for your headings. One font for the body. Keep it simple.

2. Bad color contrast

Color contrast can mean the difference between easy to read or difficult. A bad color choice can make the text blend in with the background. Color blind and older individuals make have difficulty if you use the wrong colors. Check out the Best Ways to Evaluate Your Designs for Color Contrast.

3. Forgetting to label your icons

Many apps use the same icons. Icons like stars, hearts and check marks. These icons can mean different things in different apps. Use labels to help users know what the icon means.

4. Misleading users with links and buttons

Make sure that buttons and links do what you promised. It should take the user somewhere or do something. A general rule is that a link needs to go somewhere. Buttons allow a user to do something. Don’t use links to add, change or delete any data on the screen.

When do you use a button? First, consider what task you want the user to do. If they need to Buy, Sign Up or Add something, use a button. You may use secondary buttons for different tasks. Your primary action should stand out. For other actions like going to a new page, you can use a link.

5. Slow load times

Slow loading pages can annoy your users. Use tools like PageSpeed Insights to tell you what is slowing your site down. Images, fonts and videos can slow your site down.

6. No way to distinguish a primary and secondary button

Sometimes you’ll have more than one action that you want the user to do. It’s important to make it easy for them to identify the primary action. Your primary button should be bolder and more prominent. Choose a strong color with bold text to help it stand out.

7. No text hierarchy

People scan your UI to figure out what to do. Text hierarchy helps them to know what to pay attention to. Use size, color and weight to show importance of text. Include spacing to separate different pieces of information.

Design mistakes can happen. You can create a better user experience by avoiding these common UX mistakes.

Posted in UX

Make Your Own UI Pattern Library

What are User Interface Design Patterns? A pattern is a plan or model for making something. In software development, patterns provide solutions to specific design problems. Buttons tell people to do something. Download, Buy, Continue or Save.

Make Your Own UI Library
Photo by Susan Q Yin on Unsplash

When you design a website or web app, you’ll need a navigation bar, button, tabs, forms and more. Common design patterns help to make your design easy to use and user friendly.

What is a UI Pattern Library?

A UI Pattern Library is a collection of user interface components or patterns. It helps you to define how each component looks and works. Your pattern library helps to ensure a consistent look and feel across your products. You want to add solutions so you don’t have to solve the same design problem over and over again. Or search your app for the pattern that you need to use.

What goes in it?

You’ll want to define your user interface. How you create buttons, navigation bars, layouts, alerts and notifications. Include guidelines on how and when to use them. You may want to include code snippets so you don’t have to rebuild a component from scratch. Also include color palettes, typography and grid layouts.

Where to find Design Pattern Libraries and Resources?

Build Your Own

When you build your own pattern library, get designers and developers involved. A pattern library is a collaborative project. Both your designers and developers must work together in creating and maintaining it.

  • Decide on what to name things The team needs to decide what to call a component. A shared naming convention prevents communication problems.
  • Use a ticket system to track updates Your design library has to be updated and maintained. A ticket system makes it easy to track changes. You can create an approval system for requests.
  • Audit your library Your library can quickly become out of date. Remove old components, templates and no longer used patterns. Plan to audit your library at least once a year.

JavaScript Debugging Tips

Debugging code is a challenging task. When your code doesn’t work, it can be challenge to find the cause of the problem. You may do things like comment out the code or make a small change to see if that fixes the issue. What do you do when these tricks don’t help you find the bug?

JavaScript Debugging Tips
Photo by Mitchell Dunn from Burst

If you are like many JavaScript developers, you start with console.log to find the problems in your code.

When to use console.log()

Console.log() is simple and easy to use debugging tool. You can have it display a message so you know that the code worked. Or you can use variables and expressions to determine if you are getting the right values.

When to use debugger

What do you do if the problem is hard to find? You can use a debugging tool. A debugging tool is a software tool that helps you identify coding errors. You can step through your code line by line to see how it is working. You can stop executing the code at certain points. It can help you to read error messages and handle exceptions.

Your browser has powerful debugging tools include the console.log. Each browser is a bit different on the development tools that it offers. Learn more about the basic functions of your browser’s development tools.

Tips for debugging JavaScript

  1. Start with the console.log(). You can always switch to using other debugging methods if the console.log doesn’t work for you.
  2. Read the error message. Error messages may include helpful details. Like the line number where the error occurred, type of error and a brief description.
  3. Use Breakpoints. Breakpoints allow you to pause your code at a specific line. You can step through your code line by line and see how it is working.
  4. Add the debugger statement in your code. It acts like a breakpoint in your code. When the code reaches this point, it pauses at debugger. If no debugger functionality is available, your browser ignores this statement.
  5. Handle Exceptions. Exceptions are errors that when your code is executing. They can occur when you have syntax, logic or runtime errors. Make sure you are handling exceptions. Exceptions can help you to identify and resolve issues in your code.

Debugging like coding takes practice. Use this tips to help you get better at finding issues in your code. If you still can’t find it, take a break. Walking away from the problem sometime help. So can talking to others also helps.

Read more on debugging