Loading...
Loading...
By continuing to use the platform, you accept the terms of the Privacy Policy and the use of cookies.
Atomic Design (Atomic Design) is methodology developed by Brad Frost for building design systems. Its essence is breaking interface into five abstraction levels, starting from simplest elements (atoms) and ending with full pages. This facilitates reuse and scaling of interface components.
Basic interface elements: buttons, links, inputs, headings, color and typography variables.
Groups of atoms collectively solving small interface task.
Larger and more complex UI parts consisting of several molecules (and/or atoms).
Skeleton page layouts defining placement of organisms, molecules and atoms.
Final template implementation with real data and content.
Clear Organization
Each component has its place in hierarchy: atom, molecule, organism, template or page.
Reuse
Atom or molecule needs to describe styles and behavior once. Then they can be reused in various places of application.
Consistency
All UI elements are united by unified visual style and principles. Change in atom (e.g., color) automatically applies to all molecules and organisms where it's used.
Faster Development
Thanks to ready set of "building blocks" (atoms, molecules, organisms), you can quickly assemble new pages and templates.
Not Suitable for All Project Types
Works great for design systems and UI libraries, but can be excessive for large business applications where complex logic and structure are important.
Blurred Boundary Between Levels
In real projects it's sometimes hard to determine what belongs to molecules and what to organisms. Disputes and confusion arise.
Lack of Business Orientation
Approach primarily solves UI questions; it doesn't address business logic organization in project.
Summary:
Atomic Design is powerful methodology for structuring components and simplifying UI element reuse. It's ideal for forming design systems and speeds up product creation process. However, if your project contains extensive business logic or doesn't need such detailed interface division, Atomic Design may be excessive. In such cases it can be combined with other architectural approaches (e.g., FSD or modular structure) for more complete business requirement implementation.
Read more about Atomic design here.