Color Picker CHEAT SHEET

The Color Picker cheat sheet provides you basic color info and choices

htmlcolor
3
Sections
4
Cards

#Getting Started

Color Basics
CategoryDescription
Color ModelsRGB: Red, Green, Blue – additive model used in screens.
HEX: Hexadecimal color codes, e.g., #FFFFFF.
HSL: Hue, Saturation, Lightness – intuitive for color adjustments.
HSV: Hue, Saturation, Value – similar to HSL but with different brightness handling.
Color TerminologySaturation: Intensity or purity of a color.
Hue: The color type (e.g., red, blue).
Lightness: Brightness or darkness of a color.
Opacity: Transparency level of a color, often defined as alpha in RGBA.
Color Representation FormatsHEX: #RRGGBB or #RRGGBBAA (with alpha).
RGB: rgb(255, 255, 255)
RGBA: rgba(255, 255, 255, 0.5)
HSL: hsl(120, 100%, 50%)
HSLA: hsla(120, 100%, 50%, 0.5)
Main Frameworks
FrameworkColor Notation / SyntaxDescriptionDocumentation Link
CSScolor: red;
color: #ff0000;
color: rgb(255, 0, 0);
color: rgba(255, 0, 0, 0.5);
color: hsl(0, 100%, 50%);
color: hsla(0, 100%, 50%, 0.5);
Standard CSS color properties and formats.CSS Color Documentation
SASS/SCSS$color: #ff0000;
color: $color;
Variables for colors, can use same formats as CSS.SASS Color Documentation
Tailwind CSSclass="bg-red-500"
class="text-green-300"
Utility classes with predefined color shades.Tailwind CSS Colors
Bootstrapclass="text-primary"
class="bg-success"
Named color classes for quick styling.Bootstrap Colors
Material UIstyle={{ color: 'primary' }} or theme paletteUses theme palette, can override with specific color codes.Material UI Color

#Color Palette

Tailwind Palette

#Gradient CSS

Gradient Maker
ParameterDescriptionExample
to rightGradient goes from left to rightlinear-gradient(to right, #ff7e5f, #feb47b)
to leftGradient goes from right to leftlinear-gradient(to left, #ff7e5f, #feb47b)
to bottomGradient goes from top to bottomlinear-gradient(to bottom, #ff7e5f, #feb47b)
to topGradient goes from bottom to toplinear-gradient(to top, #ff7e5f, #feb47b)
degSpecify an angle in degreeslinear-gradient(45deg, ...)