Skip to content
SEWWA

New Features: Palette Naming & Color Descriptions

Dec 28, 2025 — CSS, Web Development, Tools, Design

We just rolled out two game-changing features to the CSS Color Converter & Variable Tool (opens in a new window): editable palette names and color descriptions. These might seem like small additions, but they’ll make your workflow so much smoother.

What’s New

1. Name Your Palettes

Remember when every palette was just “Palette 1”, “Palette 2”, “Palette 3”? Not anymore. Now you can:

Just click on the palette name above your color cards, type your custom name like “Brand Colors” or “Dashboard Theme”, and you’re done. It’s that simple.

2. Add Color Descriptions

Ever copied CSS variables and forgot what each color was for? We’ve got you covered. Now you can:

When you generate your CSS variables, descriptions appear as inline comments next to each variable:

/**
* Generated by Sewwa Color Converter
* https://www.sewwa.com/color-converter
* Palette: My Brand Colors
*/
:root {
--royal-blue: #4169e1; /* Primary button color */
--tomato-alpha-50: rgba(255, 99, 71, 0.5); /* Error state indicator */
--lime-green: #32cd32; /* Success notification */
}

No more guessing what --royal-blue is used for. Your future self (and your teammates) will thank you.

Palette Naming Interface

Why It Matters

Before These Features

Working with color palettes was functional but… forgetful. You’d generate a palette, use it in your project, and a week later wonder: “Wait, what was this palette for again?” Or you’d share CSS variables with your team and get questions like “What’s this color supposed to be used for?”

You’d end up:

  1. Creating separate documentation files
  2. Adding comments manually in your CSS
  3. Keeping mental notes (that you’d forget)
  4. Explaining colors over and over in code reviews

Now It’s Different

With palette names and color descriptions:

It’s like having a built-in documentation system that follows your colors everywhere they go.

Real-World Use Cases

Design System Documentation

Create a palette called “Primary Brand Colors” and add descriptions like:

When you copy the CSS, your entire team gets context with the code.

Component-Specific Palettes

Name your palette “Dashboard Cards” and describe each color:

Perfect for component libraries where context matters.

Accessibility Notes

Add descriptions that include accessibility info:

Your CSS becomes a knowledge base.

Try It Out

Visit https://www.sewwa.com/color-converter (opens in a new window) and:

  1. Generate a palette (or load one from history)
  2. Click the palette name above the color cards to rename it
  3. Type descriptions in the input fields below each color name
  4. Generate CSS variables and see your descriptions appear as comments

Everything auto-saves, so you can focus on what matters: building great designs.


Have feedback or feature requests? Let us know here (opens in a new window).