### Local Tachyons Setup: Clone Repository and Install Dependencies Source: https://github.com/tachyons-css/tachyons/blob/main/README.md To set up Tachyons locally, clone the repository from GitHub and install its dependencies using npm. ```bash git clone https://github.com/tachyons-css/tachyons.git cd tachyons npm install ``` -------------------------------- ### Include Tachyons CSS via CDN Source: https://github.com/tachyons-css/tachyons/blob/main/README.md The quickest and easiest way to start using Tachyons is to include a reference to the minified file in the head of your HTML file. ```html ``` -------------------------------- ### Compile Tachyons CSS in Development Mode with Watch Source: https://github.com/tachyons-css/tachyons/blob/main/README.md Run `npm start` (aliased to `npm run build:watch`) to compile Tachyons CSS, outputting minified and unminified versions to the CSS directory, and watch the source directory for changes. ```bash npm start ``` ```bash npm run build:watch ``` -------------------------------- ### Check Tachyons Classes for Redefinitions (Mutations) Source: https://github.com/tachyons-css/tachyons/blob/main/README.md Run `npm run mutations` to lint and check that Tachyons classes have only been defined once, helping to prevent naming collisions with other libraries or custom CSS. ```bash npm run mutations ``` -------------------------------- ### Build Tachyons CSS Once Without Watching Source: https://github.com/tachyons-css/tachyons/blob/main/README.md Execute `npm run build` to compile Tachyons CSS once, without continuously watching the source directory for changes. ```bash npm run build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.