Getting Started
Design systems enable teams to build better products faster by making design reusable—reusability makes scale possible. This is the heart and primary value of design systems. A design system is a collection of reusable components, guided by clear standards, that can be assembled together to build any number of applications.
By clearly documented code standards and best practices in place, designers and developers from across your organization can easily use and, more importantly, contribute to your design system.
Regardless of the technologies and tools behind them, a successful design system follows these guiding principles:
- It’s consistent. The way components are built and managed follows a predictable pattern.
- It’s self-contained. Your design system is treated as a standalone dependency.
- It’s reusable. You’ve built components so they can be reused in many contexts.
- It’s accessible. Applications built with your design system are usable by as many people as possible, no matter how they access the web.
- It’s robust. No matter the product or platform to which your design system is applied, it should perform with grace and minimal bugs.
Basic usage
HTML
This collection of design standards and associated rules can be addded to any html document by adding the following line of code inside the html <head>
tags.
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/scudderuhsinc/UHStyles@master/beta/styles.min.css">
Instructions : https://www.w3schools.com/css/css_howto.asp
A specific version of the design standards can be used by referencing the desired version number.
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/scudderuhsinc/UHStyles@master/ - version number here - /styles.min.css">
Instructions : https://github.com/scudderuhsinc/UHStyles/blob/master/README.md
JAVASCRIPT
here
Instructions :