App delivered via Firebase Hosting (static): color-palette-shade-generator.web.app
Creates multiple shades of colors for websites based on color theory schemes. Creates CSS and/or Tailwind variables with copy buttons that you can paste directly into your CSS or tailwind config file.
--color-blue-500: hsla(240, 80%, 50%, 1)
tailwind.config.js
) variables with optional reference the CSS variables--color-varname
--color-varname
7.5%; dark/light: 1/3%L
0%
10
hsla(240, 75%, 50%, 0.9)
rgba(32, 32, 223, 0.9)
#2020dfe6
hsl(240, 75%, 50%)
rgb(32, 32, 223)
#2020df
Learn more about color theory.
I believe HSL is the easiest for a human to understand. Thanks to Kevin Powell for explaining HSL so well: Are you using the WRONG color model in your CSS?
Svelte made developing this very fun. I've barely scratched at the surface of React and Vue apps but enough to know that Svelte provides more speed, smaller payload and a quicker app. Development spins up in under 10 seconds on my 4+ year old i5 (where React would take almost 10x the time, Vue is somewhere in between but with additional payload).
I thought it'd be handy to have a tool to create these custom color variables but didn't love the various shade generators that I found in the wild. I also wanted to learn Svelte and SvelteKit.
See more of my works at taocode.com.