Based on uswds-sandbox. An eleventy site for rapid web prototyping and testing with the U.S. Web Design System (USWDS).
- Node v18 (LTS)
- Clone repo.
- Run
npm install. - Run
npm run initto get necessary files. - Run
npm startfor local environment. - Visit site locally at http://localhost:8080.
USWDS assets will be in assets/fonts and assets/img.
SASS files will be in the /_styles directory. Running npm start will also watch these files and recompile when there are changes.
_uswds-theme.scss_project-styles.scss
Important As you add and modify components you should always be testing for accessibility.
Exercises below are to help users understand the different ways you can use the U.S. Web Design System. They are in sequential order. If you get stuck you can move to the next branch.
Some exercises use liquid template logic for convenience. This allows you to focus on USWDS as much as possible.
Example logic
Note You won't need to modify these logic statements.
The logic below only adds a class to the first item in the loop. This is where we'll add a special class to visually differentiate this callout.
<div
class="callout {% if forloop.first %} callout--first {% endif %}">
…rest of code.
</div>Branch: 01-core-components
URL: http://localhost:8080/01/
USA Banner & Identifier are core components. These are the most recognizable and standardized elements of a government site.
Exercise
Note We'll be using one of the selected system color tokens as our primary brand color moving forward.
- Review variants of USA Banner & Identifier.
- Find component theme settings for each.
- Use system color tokens to set unique background and link colors in
_uswds-theme.scssfile. - Accessibility: Make sure text and links meet AA contrast requirements. use browser developer tools or the deque axe extension.
Branch: 02-prototyping
URL: http://localhost:8080/02/
Prototype a page using USWDS. We're going to be using: USWDS Components, Theme settings, Tokens, Grid layout, and Utility classes.
Exercise
- Find News section in
02-prototyping/index.html. - Find the div with the ID
example-card-flag. - Use the code example for Flag layout card to convert the news section markup.
- Apply utility classes to remove list styles from unordered list labelled
#example-list. - Apply the USA Tag markup to the list items [
example-tags] inside example list. - Use the card component example to apply default card markup to the callout section list labelled
card-default-example. - Add a utility class to change the background color (and text color if needed).
- Use the headings variant of collection component code example to section labelled
example-collection-headers. - Apply collection calendar variant code example to section labelled
example-collection-headers. - Finally we're going to apply layout classes. Start at the top section labelled
example-grid-rowand apply the grid row classes. - Apply layout grid classes to the
<main>and<aside>elements to create a two column grid. - Use utility settings to enable the
tablet-lgbreakpoint in [_uswds-theme.scss]. - Use responsive variants to define an 8-col content section and a 4-col wide sidebar with your newly enabled breakpoint.
Branch: 03-theming
URL: http://localhost:8080/03/
Now that we have structure and basic theming setup. Let's start customizing and applying our "brand" colors.
Exercise
- Go to theme settings stylesheet [
_uswds-theme.scss]. Use color from either Banner or Identifier to define primary theme colors. Learn more about theme colors - Update Banner & Identifier theme settings with new primary token.
- Set identifier secondary links to primary lightest color.
- Modify theme setting for focus color and set to primary theme color.
- Add base theme color settings to match your new primary color.
- Add accent theme color settings to match your new primary colors. Hint: Use USWDS color wheel to help.
- Find and update hero image theme setting. Use sample WEBP images from
assets/project/img/herodirectory. - Cleanup first callout card. Fix contrast issues.
Branch: 04-beyond
URL: http://localhost:8080/04/
Here we're going to refine our design customize some components.
Exercise
- USWDS Docs [designsystem.digital.gov]
- Theme settings page
- Components
- Color tokens
- Overview; we'll look at color wheels for theming.
- Theme tokens
- State tokens
- System tokens
- VS Code Better Comments extension; Improved code comment styles.
- VS Code Prettier extension: linting & formatting [marketplace.visualstudio.com]; For consistent code style & formatting.
- axe devtools [deque.com]; for a11y testing.