website_designs

Avant Basic

An aesthetic characterized by pastel colors, retro-psychedelic patterns, and a combination of clean and curved lines. It represents maximalism as a deliberate contrast to minimalism, popularized via Instagram and TikTok. The term was coined in December 2020 by Emma Hope Allwood, describing it as “extravagance in the age of mechanical reproduction.”


Color Palette

Suggested CSS Color Tokens

Role Description Suggested Value
Background Neutral white #FFFFFF / #F8F5F0
Primary Pastel pink #F4A7BB / #FFB6C1
Secondary Pastel blue #A8D8EA / #89CFF0
Accent 1 Pastel green #B5EAD7 / #98D8AA
Accent 2 Pastel orange #FFCBA4 / #FFD3A3
Accent 3 Pastel lavender #C3B1E1 / #D4BBFF
Text Soft dark #2D2D2D / #3A3A3A

Typography


Visual Characteristics

Shapes and Forms

Patterns and Textures

Key Decorative Motifs


Layout Principles


CSS / Web Design Techniques

Border Radius and Soft Shapes

/* Generous rounding on all interactive elements */
.card { border-radius: 24px; }
.button { border-radius: 999px; } /* pill shape */
.container { border-radius: 16px; }

Checkerboard Pattern (CSS)

.checkerboard {
  background-image:
    linear-gradient(45deg, #F4A7BB 25%, transparent 25%),
    linear-gradient(-45deg, #F4A7BB 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #F4A7BB 75%),
    linear-gradient(-45deg, transparent 75%, #F4A7BB 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
}

Wavy Dividers (SVG/CSS)

.wavy-divider {
  background: url("data:image/svg+xml,...") repeat-x;
  /* Or use clip-path for wavy section edges */
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 85%,
    75% 100%, 50% 85%, 25% 100%, 0% 85%
  );
}

Soft Shadows and Glows

.card {
  box-shadow: 0 8px 32px rgba(244, 167, 187, 0.2);
}
.highlight {
  box-shadow: 0 0 20px rgba(168, 216, 234, 0.4);
}

Blob / Organic Shapes

.blob {
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 60%;
  /* Irregular border-radius creates organic blob forms */
}

Pastel Gradients

.gradient-bg {
  background: linear-gradient(135deg, #A8D8EA 0%, #F4A7BB 50%, #FFCBA4 100%);
}

Design Influences



Associated Brands and Visual References


Key Design Values