### Installing Webpixels CSS via npm Source: https://github.com/webpixels/css/blob/master/README.md This command installs Webpixels CSS and its peer-dependencies, including Bootstrap, using npm. It's the recommended method for most projects to enable customization features. ```txt npm install -D @webpixels/css@2.0.0 bootstrap@5.3.3 ``` -------------------------------- ### Importing Webpixels CSS Base Styles in Sass Source: https://github.com/webpixels/css/blob/master/README.md This Sass import statement brings in the core Webpixels CSS base styles and components into your `main.scss` file. It automatically includes Bootstrap, simplifying the setup process. ```scss @import "@webpixels/css/main"; ``` -------------------------------- ### Importing Webpixels CSS Utility Classes in Sass Source: https://github.com/webpixels/css/blob/master/README.md This Sass import statement includes all Webpixels CSS utility classes into your `utility.scss` file. These utilities leverage the Bootstrap Utility API for comprehensive styling without custom CSS. ```scss @import "@webpixels/css/utility"; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.