ColorShadesPalette

public interface ColorShadesPalette

Represents a color palette with shades ranging from light to dark. Each shade is represented by a color value, allowing for a consistent and harmonious color scheme. The palette includes shades from 50 (lightest) to 950 (darkest), with an additional base color.

Inheritors

Functions

Link copied to clipboard
public abstract Color getBase()

The main base color of the palette.

Link copied to clipboard
public abstract Color getColor100()

The second lightest shade in the palette (10% saturation).

Link copied to clipboard
public abstract Color getColor200()

The third lightest shade in the palette (20% saturation).

Link copied to clipboard
public abstract Color getColor300()

The fourth lightest shade in the palette (30% saturation).

Link copied to clipboard
public abstract Color getColor400()

The fifth lightest shade in the palette (40% saturation).

Link copied to clipboard
public abstract Color getColor50()

The lightest shade in the palette (5% saturation).

Link copied to clipboard
public abstract Color getColor500()

The base shade in the palette, typically the primary color (50% saturation).

Link copied to clipboard
public abstract Color getColor600()

The sixth darkest shade in the palette (60% saturation).

Link copied to clipboard
public abstract Color getColor700()

The fifth darkest shade in the palette (70% saturation).

Link copied to clipboard
public abstract Color getColor800()

The fourth darkest shade in the palette (80% saturation).

Link copied to clipboard
public abstract Color getColor900()

The third darkest shade in the palette (90% saturation).

Link copied to clipboard
public abstract Color getColor950()

The second darkest shade in the palette (95% saturation).