Patterns derived from the Solmex logo geometry—45° angles, radial forms, and technical grids that reinforce brand identity.
Primary patterns extracted from logo construction. Use these to add visual interest while maintaining brand consistency.
All patterns are available in both dark and light variants for different application contexts.
Examples of patterns applied in real interface contexts.
Main landing page header with content overlay
Data visualization canvas
User input areas
Copy these CSS snippets to implement patterns in your projects.
/* 45° Diagonal Stripes - Solmex Signature Pattern */ .pattern-stripes { background: repeating-linear-gradient( 45deg, transparent, transparent 20px, rgba(255, 148, 59, 0.15) 20px, rgba(255, 148, 59, 0.15) 40px ); } /* Precision Dot Grid */ .pattern-dots { background-image: radial-gradient( rgba(255, 148, 59, 0.3) 1.5px, transparent 1.5px ); background-size: 24px 24px; } /* Technical Grid */ .pattern-grid { background: linear-gradient(rgba(255, 148, 59, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 148, 59, 0.1) 1px, transparent 1px); background-size: 48px 48px; } /* Radial Rings */ .pattern-radial { background: repeating-radial-gradient( circle at center, transparent 0, transparent 20px, rgba(255, 148, 59, 0.08) 20px, rgba(255, 148, 59, 0.08) 40px ); } /* Corner Cut Accent */ .pattern-corner::after { content: ''; position: absolute; bottom: 0; right: 0; border-style: solid; border-width: 0 0 60px 60px; border-color: transparent transparent rgba(255, 148, 59, 0.3) transparent; }
Rules for using patterns effectively while maintaining brand integrity.