- Notifications
You must be signed in to change notification settings - Fork1.1k
The U.S. Web Design System helps the federal government build fast, accessible, mobile-friendly websites.
License
uswds/uswds
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
TheUnited States Web Design System includes a library of open source UI components and a visual style guide for U.S. federal government websites.
This repository is for the design system code itself. We maintainanother repository for the documentation and website. To see the design system and its documentation on the web, visithttps://designsystem.digital.gov.
- Recent updates
- Getting started
- What's included in USWDS
- Installing the design system
- Using USWDS CSS and JavaScript in your project
- Compiling USWDS Sass into CSS
- JS customization
- Style theming and tokens
- CSS architecture
- Browser support
- Accessibility
- Long-term support of v1.x
- Long-term support of v2.x
- Need installation help?
- Contributing to the code base
- Reuse of open-source style guides
- Licenses and attribution
- Contributing
Information about the most recent release of the design system can always be found in therelease history. We include details about significant updates and any backward-incompatible changes along with a list of all changes.
USWDS 3.0 is our most recent major release.
We’re glad you’d like to use the design system — here’s how you can get started:
- Designers: Check out ourGetting started for designers information.
- Developers: Check out ourGetting started for developers information. If your project doesn't use npm for package management, follow the instructions in this README toinstall the design system without npm.
- Anyone: Take a look at our newUSWDS Tutorial. Follow the instructions in this GitHub repo to clone a sample project, install USWDS, customize it, and add USWDS components. It should take about an hour, and is a good introduction to USWDS concepts.
The USWDS package includes compiled assets in adist
directory and component source files in apackages
directory.
As of USWDS 3.0.0, our codebase is centered around functional packages, typically components. For more about how we organize packages,see our Packages documentation. In each of the following examples, we use[package]
to represent a specific package. For example, component Sass is located inpackages/[package]/src/styles
for an accordion, this would bepackages/usa-accordion/src/styles
.
- Fonts are located in both
dist/fonts
andpackages/uswds-core/src/assets/fonts
. The fonts indist
are simply a copy of the files inuswds-core
. - Images and icons are located in:
dist/img
. The source for component-specific images can be found in a package'ssrc/img
directory. - JavaScript for components is located in
packages/[package]/src/index.js
. General JavaScript utilities are located in theuswds-core
package:packages/uswds-core/src/js
- Sass component-specific stylesheets are located in:
packages/[package]/src/styles
. Many components also have a component entry point atpackages/[package]/_index.scss
that includes references to all a component's dependencies as well.Compiled CSS is located indist/css
. - Template markup for the components is located in:
packages/[package]/src/[package.twig]
in the site root. These, however, are written in the templating language Twig. It's best to get HTML source markup directly fromdesignsystem.digital.gov/components
Here's what you can expect to find inside the USWDS package:
[uswds package]├── .storybook/├── dist/│ ├── css/│ │ ├── uswds.css│ │ ├── uswds.min.css│ │ └── uswds.min.css.map│ ├── fonts/│ │ ├── merriweather/│ │ ├── public-sans/│ │ ├── roboto-mono/│ │ └── source-sans-pro/│ ├── img/│ │ ├── usa-icons/│ │ ├── material-icons/│ │ ├── uswds-icons/│ │ ├── usa-icons-bg/│ │ ├── sprite.svg│ │ ├── [individual images]│ │ ...│ ├── js/│ │ ├── uswds-init.js│ │ ├── uswds-init.min.js│ │ ├── uswds-init.min.js.map│ │ ├── uswds.js│ │ ├── uswds.min.js│ │ └── uswds.min.js.map│ ├── scss/│ │ └── stylesheets/│ │ └── uswds.scss│ └── theme/│ ├── _uswds-theme.scss│ ├── _uswds-theme-custom-styles.scss│ └── styles.scss├── packages/│ ├── usa-component/│ │ ├── src/│ │ │ ├── content/│ │ │ ├── styles/│ │ │ │ ├── _index.scss│ │ │ │ └── component.scss│ │ │ ├── test/│ │ │ │ ├── component.spec.js│ │ │ │ └── template.html│ │ │ ├── index.js│ │ │ ├── usa-component.stories.js│ │ │ └── usa-component.twig│ │ └── _index.scss_/│ ├── usa-component/│ ├── usa-component/│ ├── uswds-bundle/│ ├── uswds-bundle/│ ...├── src/│ ├── img/│ ├── stylesheets/│ └── test/└── tasks/
Here's what you can expect to find in each of the directories and files in the USWDS package:
/.storybook
: Storybook configuration files (not used in USWDS projects)/dist
: Compiled or collected files/dist/css
: Precompiled CSS files with USWDS defaults/dist/fonts
: Default fonts available to the design system/dist/img
: All USWDS images collected into a single directory/dist/img/usa-icons
: All icons collected into the USWDS icon sprite (sprite.svg
)/dist/img/material-icons
: All Material Icons/dist/img/uswds-icons
: All icons created by USWDS/dist/img/sprite.svg
: Precompiled icon sprite with default icon set/dist/js
: Precompiled JavaScript files/dist/scss/stylesheets/uswds.scss
: Backwards compatible USWDS Sass entry point/dist/scss/theme
: Example theme files/dist/scss/theme/_uswds-theme.scss
: Example theme settings file/dist/scss/theme/_uswds-theme-custom-styles.scss
: Example custom settings file/dist/scss/theme/styles.scss
: Example project Sass entry point/packages
: Source files for USWDS components and other functionality./packages/usa-[component]
: Each package has a name likeusa-[component]
that matches its class name in the design system, likeusa-accordion
./packages/usa-[component]/_index.scss
: Sass entry point for the package./packages/usa-[component]/src
: Package source files/packages/usa-[component]/src/index.js
: Package javascript/packages/usa-[component]/src/usa-component.stories.js
: Storybook setup/packages/usa-[component]/src/usa-component.twig
: Component template/packages/usa-[component]/src/index.js
: Package javascript/packages/usa-[component]/src/content
: Package template content/packages/usa-[component]/src/test
: Package unit tests/packages/usa-[component]/src/styles
: Package source Sass/packages/uswds
: The package most projects include by default. This bundle includes all USWDS components and functionality./packages/uswds-[bundle]
: Other non-component functionality is included inuswds-
-prefixed packages. These bundles might collect common component packages (uswds-form-controls
) or important internal functionality (uswds-core
)./src
: Placeholders included for backwards compatibility. Most projects should avoid using the contents of this directory./tasks
: Internal build process files (not used in USWDS projects)
There are two ways to install the design system on a project:
- Installing it as a project dependency using Node and npm
- Installing the package directly from GitHub
We recommend using npm to make it as straightforward as possible to install the design system and update it as we release new versions.
Use the npm package manager for Node-based projects. USWDS maintains the@uswds/uswds
package that includes both the pre-compiled and compiled files. We rely on npm packages to easily update and install the design system from the command line.
Install
Node/npm
. Below is a link to find the install method that coincides with your operating system:- Node (see.nvmrc for version number),Installation guides
Note for Windows users: If you are using Windows and are unfamiliar with Node or npm, we recommend followingTeam Treehouse's tutorial for more information.
Make sure you have installed it correctly:
npm -v6.13.0# This line may vary depending on what version of Node you've installed.
Create a
package.json
file. You can do this manually, but an easier method is to use thenpm init
command. This command will prompt you with a few questions to create yourpackage.json
file.Add
@uswds/uswds
to your project’spackage.json
:npm install --save @uswds/uswds@latest
The@uswds/uswds
module is now installed as a dependency. You can use the compiled files found in thenode_modules/@uswds/uswds/dist/
directory or the source files in thenode_modules/@uswds/uswds/packages/
directory.
Note: We donot recommend directly editing the design system files innode_modules
. One of the benefits of using a package manager is its ease of upgrade and installation. If you make customizations to the files in the package, any upgrade or re-installation will wipe them out.
If you’re using a framework or package manager that doesn’t support npm, you can find the source files in this repository and use them in your project. Otherwise, we recommend that you follow the steps outlined in this section.
Download theUSWDS package directly from the latest USWDS release and uncompress that file.
Copy these files and folders into a relevant place in your project's code base. Here is an example structure for how this might look:
example-project/├── assets/│ ├── uswds/│ │ ├── dist/│ │ ├── packages/│ │ └── src/│ ├── stylesheets/│ ├── images/│ └── javascript/└── index.html
You'll notice in our example above that we also outline a
stylesheets
,images
andjavascript
folder in yourassets
folder. These folders are to help organize any assets that are unique to your project and separate from the design system assets.Note: Files in the downloadable USWDS package will show a "last modified" date of October 26, 1985. This isintentional. This default date is set by npm on all its packages to ensure builds will be identical.
The three files critical to any USWDS project are thestylesheet, theJavaScript, and theinitializer. Most projects require all of these to function properly.
- Stylesheet: This is the compiled CSS stylesheet that describes how design system components look. To start, reference either
uswds.css
oruswds.min.css
in the<head>
of your document. Find this file in/dist/css
. Most projects will want to compile their own CSS from USWDS source Sass instead of using the precompiled version. For more about this, seeCompiling USWDS Sass into CSS, below. - Library: This is the compiled JavaScript that controls component interactivity. Reference either
uswds.js
oruswds.min.js
at the end of the<body>
of your document. Find this file in/dist/js
. - Initializer: This small JavaScript file (less than 1 KB minified) helps the browser know if the USWDS JavaScript library is loading properly. This prevents component content from "flashing" or "shifting" while the page loads. Reference
uswds-init.min.js
in the<head>
of your page, or inline its contents directly into the<script>
tag. Find this file in/dist/js
.
Reference the stylesheet, library, and initializer in each HTML page or dynamic template in your project.
Here is an example of how to reference these assets in yourindex.html
file:
<!DOCTYPE html><html><head><metacharset="utf-8"/><metahttp-equiv="X-UA-Compatible"content="IE=edge"/><metaname="viewport"content="width=device-width, initial-scale=1.0"><title>My Example Project</title><scriptsrc="assets/uswds/dist/js/uswds-init.min.js"></script><linkrel="stylesheet"href="assets/uswds/dist/css/uswds.min.css"/></head><body><scriptsrc="assets/uswds/dist/js/uswds.min.js"></script></body></html>
And that’s it — you should now be able to copy our code samples into yourindex.html
and start using the design system.
If you want to take full advantage of USWDS custom settings and add build new styles and components with the USWDS toolset, you'll need a way to access the assets in the USWDS package and compile custom CSS from the USWDS source files.
USWDS uses the task managerGulp as a way to add USWDS assets to a project and compile our CSS from the package source. Gulp is a useful and powerful tool, but it can be difficult to set up if you are new to it.
TheUSWDS Compile package is made for developers new to Gulp or those who just want a simple setup to compile USWDS Sass. The repo contains files and instructions for setting up the compiler, initializing USWDS, and compiling CSS from the source files.
USWDS Sass needs three things to compile properly:
- Sass Module syntax: USWDS requires a modern Sass compiler that can parse Sass Module syntax.
- Autoprefixing: USWDS requires Autoprefixing your CSS with a specific
.browserslistrc
. - Sass Load Paths: USWDS requires Sass compilers use Load Paths that reference the
/packages
directory in the USWDS package
Note: Using a compiler package likeUSWDS Compile is a good way to fulfill these requirements automatically.
The design system requires autoprefixing to work properly. Don't add vendor prefixes to your custom styles manually — it is more reliable to use autoprefixing. Autoprefixing services likegulp-autoprefixer automatically add vendor prefixes to CSS rules. We use the following autoprefixer settings via.browserslistrc
config:
> 2%last 2 versionsnot dead
USWDS 3.0 and newer require the use ofSass Load Paths to compile properly.
USWDS 3.0 load paths must include a path to the/packages
directory in the USWDS package, typically by updating anIncludePaths
setting to includenode_modules/@uswds/uswds/packages
.
Here's how this might look in Gulp and in Webpack:
.pipe(sass({includePaths:["./node_modules/@uswds/uswds/packages",],})
loader:"sass-loader",options:{sassOptions:{includePaths:["./node_modules/@uswds/uswds/packages"],},},
- Minification: We recommend using aminifier likecsso to compress your final compiled CSS.
- Sourcemaps: We recommend using asourcemap tool like
gulp-sourcemaps
to assist debugging by keeping track of source Sass locations.
The design system is customizable using the power ofSass (Syntactically Awesome Style Sheets). The critical files you'll need in your project are those indist/scss/theme
:
_uswds-theme.scss
: custom theme settings_uswds-theme-custom-styles.scss
: additional project CSS for customizing or adding to what USWDS providesstyles.scss
: The Sass entry point. This is the primary Sass file that you'll compile. It collects theme settings, USWDS source files, and custom CSS
styles.scss
looks something like the following code. It adds all the project theme settings, then adds USWDS source, and finally adds your project's custom styles:
@forward"uswds-theme";@forward"uswds";@forward"uswds-theme-custom-styles";
Technical note: The@forward 'uswds'
statement above references theuswds
package innode_modules/@uswds/uswds/packages
. The compile functions included inuswds-compile
automatically look for USWDS packages in the proper directory usingincludePaths
.
Unfortunately, customizing the JavaScript for the USWDS currently requires NodeJS and a module bundler like Browserify or Webpack. We apologize for this inconvenience, and are working to resolve it in a future release of the design system.
USWDS JavaScript is separated into components (just as with the CSS and HTML) and initialized with event handlers when the DOM is ready. These components are accessible as CommonJS modules that can be required in other JavaScript files, then built for the browser. The components are not accessible in the global browser scope, but can be extended to be included by requiringcomponents
and setting it to a global scope:
window.uswds=require("./components");
Each component has a standardized interface that can be used to extend it further. The components store a HTML class (like.usa-accordion__button[aria-controls]
) used to link HTML elements with the JavaScript component. When a component is initialized, it searches through the current HTML DOM to find all elements that match the class and initializes the component JavaScript for those elements. The primary methods for each component include:
on
: Initialize a component's JavaScript behavior by passing the root element, such aswindow.document
.off
: The opposite ofon
, de-initializes a component, removing any JavaScript event handlers on the component.hide
: Hide the whole component.show
: Shows a whole, hidden component.toggle
: Toggles the visibility of a component on and off based on the previous state.
Some components have additional methods based on that component's functionality. Any additional methods are found in that component's JavaScript file.
If you’re using a modern framework like React or Angular you can import components and initialize them in your library's DOM ready lifecycle event.
Importing a modular component.
importaccordionfrom"@uswds/uswds/js/usa-accordion";importcharacterCountfrom"@uswds/uswds/js/usa-character-count";
React hooks example:
functionApp(){constref=document.body;useEffect(()=>{// initializecharacterCount.on(ref);// default ref is document.body, if you want to use// default you do not have to pass argumentsaccordion.on();// remove event listeners when the component un-mounts.return()=>{characterCount.off();accordion.off();};});}
Angular example:
exportclassAppimplementsOnInit{constructor(){this.ref=document.body;// default ref is document.body, if you want to use// default you do not have to pass arguments}ngOnInit(){// initializecharacterCount.on(this.ref);accordion.on();}// remove event listeners when the component un-mounts.ngOnDestroy(){characterCount.off();accordion.off();}}
USWDS 3.0 provides extensive support for theming via its theme settings files introduced inSass and theme settings, above.
Set theme settings with USWDS design tokens, not with values directly. They tend to be quoted strings like'desktop'
or'md'
or unitless numbers like2
or-1.5
. Tokens are the valuespassed into the USWDS functions and mixins that parse them. They are thekeys that, through the mechanism of a function or mixin, unlock avalue — they are not the values themselves.
Visit theDesign tokens section of USWDS 3.0 documentation for more on the available tokens forcolor,spacing units,font size, and more.
The following is an example of theme settings from_uswds-theme.scss
:
@use"uswds-core"with ($theme-grid-container-max-width:"desktop",$theme-site-margins-breakpoint:"desktop",$theme-site-margins-width:4,$theme-site-margins-mobile-width:2,)
The USWDS uses those tokens to build component styles:
.usa-example {@includeu-padding-x($theme-site-margins-mobile-width);max-width:units($theme-grid-container-max-width);@includeat-media($theme-site-margins-breakpoint) {@includeu-padding-x($theme-site-margins-width); }}
This is the functional equivalent of:
.usa-example {@includeu-padding-x(2);max-width:units("desktop");@includeat-media("desktop") {@includeu-padding-x(4); }}
Which, if$theme-respect-user-font-size
is set totrue
would output something like:
.usa-example {padding-left:1rem;padding-right:1rem;max-width:64rem;}@media screenand (min-width:64em) { .usa-example {padding-left:2rem;padding-right:2rem; }}
In general, USWDS setsvariables withtokens, and passes those variables intofunctions and mixins in the source Sass.
The values of$theme-font-path
and$theme-image-path
will be appended to USWDS font paths and image paths, respectively:
@use"uswds-core"with ($theme-font-path:"../fonts",$theme-image-path:"../img",);
- The CSS foundation of this site is built with theSass preprocessor language.
- The CSS organization and naming conventions follow18F’s Engineering Guide.
- We format our code withPrettier, per the formatting section of the18F Engineering Guide.
- CSS selectors areprefixed with
usa
(For example:.usa-button
). This identifier helps the design system avoid conflicts with other styles on a site which are not part of USWDS. - Uses aBEM approach for naming CSS selectors. Blocks are separated from elements with two underscores (
__
). Multi-word blocks use single hyphens instead of spaces. Modifier classes are additive — proper markup requires the base classand the modifier class or classes. Modifier classes consist of the base class plus a modifier suffix, separated by two hyphens (--
) as in.usa-button.usa-button--secondary
orusa-accordion.usa-accordion--bordered
. - Usesmodular CSS for scalable, modular, and flexible code.
- Usesnesting when appropriate. Nest minimally with up to two levels of nesting.
- Hard-coded magic numbers are avoided.
- Media queries are builtmobile first.
- Spacing units are set with the
units()
function as described inthe USWDS 3.0 documentation. In general, we use spacing in multiples of8px
— expressed as a multiple inunits([multiple])
. For instanceunits(2)
is the equivalent of2 * 8px
or16px
. In the final, compiled CSS, this value will be expressed in rem, as a multiple of the base font size set with$theme-base-font-size
.
For more information, visit:18F’s CSS Guide
We’ve designed the design system to support older and newer browsers throughprogressive enhancement. The current major version of the design system (3.0.0) follows the2% rule: we officially support any browser above 2% usage as observed byanalytics.usa.gov. Currently, this means that the design system version 3.0.0 supports the newest versions of Chrome, Firefox, and Safari.
As of USWDS 3.0.0, we no longer officially support Internet Explorer 11 (IE11). We continued to include IE11 polyfills and prefixing for the first few releases in USWDS 3.x. We started to remove IE11-related polyfills inUSWDS 3.8.2, and removed the remaining polyfills inUSWDS 3.10.0.
The design system also meets theWCAG 2.0 AA accessibility guidelines and conforms to the standards ofSection 508 of the Rehabilitation Act. Additionally, we try to meet the requirements ofWCAG 2.1.
We use the following tools to ensure USWDS is accessible:
If you find any issues with our accessibility conformance, please create an issue in our GitHub repo or send us an email atuswds@gsa.gov. We prioritize accessibility issues. Seethe Accessibility page of our website for more information.
USWDS version 1.x is no longer maintained.
USWDS version 2.x is no longer maintained.
Do you have questions or need help with setup? Did you run into any weird errors while following these instructions? Feel free to open an issue here:
https://github.com/uswds/uswds/issues.
You can also email us directly atuswds@gsa.gov.
For complete instructions on how to contribute code, please readCONTRIBUTING.md. These instructions also include guidance on how to set up your own copy of the design system style guide website for development.
If you would like to learn more about our workflow process, check out theWorkflow andIssue label Glossary pages on the wiki.
If you have questions or concerns about our contributing workflow, please contact us byfiling a GitHub issue oremailing our team.
Much of the guidance in USWDS leans on open source designs, code, and patterns from other civic and government organizations, including:
- Consumer Financial Protection Bureau’sDesign Manual
- U.S. Patent and Trademark Office’sDesign System
- Healthcare.govStyle Guide
- UK’s Government Digital Service’sUI Elements
- Code for America’s ChimeStyleguide
- Pivotal LabsComponent Library
A few parts of this project are not in the public domain. Attribution and licensing information for those parts are described in detail inLICENSE.md.
The rest of this project is in the worldwide public domain, released under theCC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication alongside the public domain portions of this project. For more information, seeCONTRIBUTING.md.
About
The U.S. Web Design System helps the federal government build fast, accessible, mobile-friendly websites.
Topics
Resources
License
Contributing
Security policy
Uh oh!
There was an error while loading.Please reload this page.