U
D

Conversation

the

06/09/15 | Uncategorized

#TechTuesday: Build a Color Palette in Your Rails App

Follow this step-by-step guide and add colors you’ve only dreamed of.

By Kathy Heffern (Software Developer, Giant Hat)

This post originally appeared on the Giant Hat blog.

So you decided you want to add some color to your rails app. “Hold on,” you say to yourself, “I’m not a designer! How can I choose a nice looking color palette?”

Don’t worry, friend. You can do this!

Find an Image You Love

This is going to be our secret trick. Find an image you love, maybe something you browsed past on Flickr, and save it. I chose Lisa Frank images, because that’s the vibe I wanted in my project (and the vibe that all of the internet should adopt.)

How do you know if the image you chose is good enough? Answer this one question: Does it look good to you? OK great, let’s pull colors from it to build our color palette.

Use a Photo Editor to Grab the Hex Colors

I’m using Gimp because it’s free and Photoshop works too. Download Gimp here.

Using Gimp

  1. Open up your image in Gimp.
  2. Select the colorpicker tool in the toolbox.
  3. Under tool options, select “Pick only” and check the “Use info window” box.

Use info window

Next, we’ll actually select colors and get their hex values for use in CSS/Sass.

  1. Using the color picker tool, click on the color you want to select.
  2. A pop up window will appear with information about the color.
  3. Make a note of the hex value. If you don’t see it, make sure RGB is selected in the drop down window.
  4. Repeat for all the colors you want to use.

Hex color

Using Photoshop

  1. Open up your image in Photoshop.
  2. Select the eyedropper tool in the toolbox.

Photoshop eyedropper tool

Next, we’ll actually select colors:

  1. Using the eyedropper tool, click on the color you want to select.
  2. A small window on the upper right side (depending on your version and configuation of Photoshop) will appear with information about the color.

Photoshop color palette

And get their hex values for use in CSS/Sass:

  1. Click on the color square to reveal a color picker dialog.
  2. Make a note of the hex value.
  3. Repeat for all the colors you want to use.

Photoshop hex value

Here are the colors I selected. This color palette is going to create exactly the feel I wanted in my app. Fantastic!

Lfpalette

Create Sass Variables for your Color Palette

Ok cool. Now that we have the hex values, we can create Sass variables with them. You can declare your Sass variables right in application.scss.css, but I like to put them in their own file. Let’s make a file called _variables.scss.

$ touch app/assets/stylesheets/_variables.scss

In that file, declare your Sass variables.

// Variables

// Lisa Frank Color Palette
$pink:          #F83E7F;
$orange:        #ff7602;
$yellow:        #fefa27;
$green:         #509916;
$blue:          #00b2f0;
$plum:          #7c2583;
$purple:        #752a8f;
$black:         #000;

Make sure to include the file in your application.scss.css.

@import "variables";

I used my custom color palette in my project to override the default Bootstrap colors for links and buttons.

.btn-primary {
    background-color: $pink;
    color: white !important;
    &:hover {
        background-color: $purple;
        border: none;
    }
}

My color palette in action:

Palette buttons

Bonus

What if I don’t have an image? I just want a cool color palette.

Good question. Often, you may feel like you want someone to just give you a color palette which you can tweak to your heart’s content. So you find a color palette on the internet, but then you can’t seem to get it just right. For this, we go to the internet!

Coolors is a sweet little tool to help you get beautiful color palettes. It works by limiting which colors are made available to you based on what you have already picked. You lock colors down and then shuffle the rest (by hitting the spacebar) and it uses the magic of color theory, math, and pixie dust to generate compatible colors. Each color bar shows its hex value so you can wait until you have them all selected before you write anything down.

Coolors paletteThe only drawback with Coolors is that you are limited to 5 colors.


So there you have it. Your color palette is ready to use. Have fun making things pretty!

Title image credit: Radu Bercan via Shutterstock.

Editor

Editor

The Switch Editorial Team.

Straight to your inbox.

The best content on the future faces of tech and startups.

"*" indicates required fields

This field is for validation purposes and should be left unchanged.

SHARE THIS STORY

NEW COHORT STARTS JANUARY 2024

Join the Angel Sessions

Develop strategic relationships, build skills, and increase your deal flow through our global angel group and investing course.

RELATED ARTICLES
[yarpp]