- Design System
- Minimalism
Minimalism
Essentialism. High whitespace. Typography-led. Functional.
01 — The Cards
Basic Context
Reduced to the absolute necessary. No shadows, just pure structure.
Featured
Highlight
Subtle contrast shift for emphasis. No loud colors.
System Status
CPU Load98%
Memory42%
DiskFULL
Activator Code:
css
1
2
3
.style-minimal-card {
@apply bg-white border border-gray-100 p-8 hover:border-gray-300 transition-colors;
}
02 — The Buttons
Activator Code:
css
1
2
3
.style-minimal-btn {
@apply px-8 py-3 bg-black text-white text-xs font-bold uppercase tracking-[0.2em] hover:bg-gray-800 transition-colors;
}
03 — The Input
SecurePort 8080
Activator Code:
css
1
2
3
.style-minimal-input {
@apply w-full h-12 bg-transparent border-b border-gray-200 font-light text-xl focus:border-black focus:outline-none transition-colors;
}
04 — The Table
| ID | User | Role | Status |
|---|---|---|---|
| #001 | Neo | The One | Active |
| #002 | Trinity | Admin | Active |
| #003 | Smith | Agent | Rogue |
Activator Code:
css
1
2
3
.style-minimal-table {
@apply w-full text-left border-t border-gray-100;
}
05 — The Modal
System Failure
Critical error detected in Sector 7G. Initiate protocol Omega?
Activator Code:
css
1
2
3
.style-minimal-modal {
@apply bg-white p-12 border border-gray-50 max-w-lg w-full text-center shadow-sm;
}