Let's talk about specific design systems. While the underlying concept benefits nearly any website, the reality is more nuanced.
Design systems are currently generating significant buzz. Recently, a new design system's public release prompted a flurry of messages urging me to check it out. My initial reaction? "Looks good." But that's like glancing at a new car's exterior – a superficial assessment. True understanding requires extensive use, building multiple projects with it to truly evaluate its strengths and weaknesses.
This raises crucial questions: Is this design system suitable for my projects? Who is the intended audience?
The Ubiquitous Accordion
Many, though not all, design systems include accordions. This isn't coincidental; it highlights a key point.
Bootstrap: A Familiar Benchmark
Bootstrap's widespread adoption and understanding provide a valuable comparison. Its CSS and HTML components are readily integrated, offering a straightforward development experience.
Whether Bootstrap is strictly a "design system" or a "pattern library" is debatable. However, the interchangeable use of these terms underscores the existing confusion.
Developers choose Bootstrap for several reasons:
- Accelerated development.
- High-quality components, beneficial for developers with less HTML/CSS expertise.
- Robust accessibility features.
- [Insert your reason here]
These benefits, while appealing, are becoming standard expectations for any modern design system, not unique to Bootstrap.
Exploring Alternatives to Bootstrap
Many developers seek alternatives to Bootstrap. Reasons include:
- Project requirements (e.g., React integration).
- Difficulty customizing Bootstrap.
- Aesthetic preferences.
- Simple boredom.
The motivations for choosing or rejecting Bootstrap are numerous.
Selecting a Design System: Beyond the Accordion
Choosing a design system requires careful consideration. Licensing is a critical factor. Salesforce's Lightning Design System, often cited as a leader, is open-source licensed (BSD Clause-3, with Creative Commons Attribution-NoDerivatives 4.0 for fonts and icons). This license clarifies its intended use: primarily for Salesforce and its associated development teams. While publicly available, it's not a general-purpose solution for all web developers.
Why is it public? Salesforce's scale necessitates accessibility for both internal and external teams. Public availability facilitates collaboration and broadens its impact.
The discussion around open-source design systems and their specific use cases remains ongoing. Is "open source" the appropriate term, or is "source available" more accurate given the context-specific nature of design systems?
IBM's Carbon Design System, another open-source option, explicitly states its target audience: IBM designers and developers working on IBM products. While usable by others, its primary focus remains internal.
Company-Specific Focus
Company-created design systems inherently serve the company's needs first. Open-source licensing doesn't negate this primary focus. The same principle applies to government-developed systems, such as the U.S. Web Design System, which prioritizes government websites.
The U.S. Web Design System, largely public domain, is a valuable resource, but its design prioritizes government needs, not individual developers. Its open-source nature facilitates community contributions, impacting websites crucial to public life.
The Spectrum of Customizability
Design systems offer varying degrees of customizability:
- Zero Customizability: Enforcing strict consistency.
- Pre-Selected Variations: Offering limited customization options (e.g., color variations).
- BYO Theme: Providing a flexible framework for extensive customization.
Shopify's Polaris design system, while open-source, prioritizes internal consistency over extensive customization, unlike Bootstrap.
Google's Material Design, initially for internal use, is now actively promoted for external use. While initially enforcing a Google aesthetic, it's becoming more customizable, allowing for branding integration. Companies like Lyft, Zappos, and NPR demonstrate successful customization.
The messaging surrounding Material Design highlights the complexities of open-source design systems. It's simultaneously for Google and for anyone else who wants to use it, a feat enabled by Google's resources and brand recognition.
Design systems are not commodities; choosing one based solely on aesthetics is insufficient. Licensing, intended audience, and customizability must be carefully considered.
My advice to creators of public design systems: Clearly define your target audience and permitted usage. The interpretation of target audience messaging varies widely, underscoring the need for clear communication.
The above is the detailed content of Who Are Design Systems For?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are three ways to create a CSS loading rotator: 1. Use the basic rotator of borders to achieve simple animation through HTML and CSS; 2. Use a custom rotator of multiple points to achieve the jump effect through different delay times; 3. Add a rotator in the button and switch classes through JavaScript to display the loading status. Each approach emphasizes the importance of design details such as color, size, accessibility and performance optimization to enhance the user experience.

To deal with CSS browser compatibility and prefix issues, you need to understand the differences in browser support and use vendor prefixes reasonably. 1. Understand common problems such as Flexbox and Grid support, position:sticky invalid, and animation performance is different; 2. Check CanIuse confirmation feature support status; 3. Correctly use -webkit-, -moz-, -ms-, -o- and other manufacturer prefixes; 4. It is recommended to use Autoprefixer to automatically add prefixes; 5. Install PostCSS and configure browserslist to specify the target browser; 6. Automatically handle compatibility during construction; 7. Modernizr detection features can be used for old projects; 8. No need to pursue consistency of all browsers,

Themaindifferencesbetweendisplay:inline,block,andinline-blockinHTML/CSSarelayoutbehavior,spaceusage,andstylingcontrol.1.Inlineelementsflowwithtext,don’tstartonnewlines,ignorewidth/height,andonlyapplyhorizontalpadding/margins—idealforinlinetextstyling

Setting the style of links you have visited can improve the user experience, especially in content-intensive websites to help users navigate better. 1. Use CSS's: visited pseudo-class to define the style of the visited link, such as color changes; 2. Note that the browser only allows modification of some attributes due to privacy restrictions; 3. The color selection should be coordinated with the overall style to avoid abruptness; 4. The mobile terminal may not display this effect, and it is recommended to combine it with other visual prompts such as icon auxiliary logos.

Use the clip-path attribute of CSS to crop elements into custom shapes, such as triangles, circular notches, polygons, etc., without relying on pictures or SVGs. Its advantages include: 1. Supports a variety of basic shapes such as circle, ellipse, polygon, etc.; 2. Responsive adjustment and adaptable to mobile terminals; 3. Easy to animation, and can be combined with hover or JavaScript to achieve dynamic effects; 4. It does not affect the layout flow, and only crops the display area. Common usages are such as circular clip-path:circle (50pxatcenter) and triangle clip-path:polygon (50%0%, 100 0%, 0 0%). Notice

TheCSSPaintingAPIenablesdynamicimagegenerationinCSSusingJavaScript.1.DeveloperscreateaPaintWorkletclasswithapaint()method.2.TheyregisteritviaregisterPaint().3.ThecustompaintfunctionisthenusedinCSSpropertieslikebackground-image.Thisallowsfordynamicvis

To create responsive images using CSS, it can be mainly achieved through the following methods: 1. Use max-width:100% and height:auto to allow the image to adapt to the container width while maintaining the proportion; 2. Use HTML's srcset and sizes attributes to intelligently load the image sources adapted to different screens; 3. Use object-fit and object-position to control image cropping and focus display. Together, these methods ensure that the images are presented clearly and beautifully on different devices.

Different browsers have differences in CSS parsing, resulting in inconsistent display effects, mainly including the default style difference, box model calculation method, Flexbox and Grid layout support level, and inconsistent behavior of certain CSS attributes. 1. The default style processing is inconsistent. The solution is to use CSSReset or Normalize.css to unify the initial style; 2. The box model calculation method of the old version of IE is different. It is recommended to use box-sizing:border-box in a unified manner; 3. Flexbox and Grid perform differently in edge cases or in old versions. More tests and use Autoprefixer; 4. Some CSS attribute behaviors are inconsistent. CanIuse must be consulted and downgraded.
