Styles backing the Atlas Design System used by Microsoft's Developer Relations.
npm install @microsoft/atlas-css@microsoft/atlas-css to your project.
sh
install with NPM
npm install --save @microsoft/atlas-css
`
Alternatively, you may access our scss directly for prototyping purposes at the following url:
`http
https://unpkg.com/@microsoft/atlas-css/dist/index.css
`
Project Structure
Each folder has an index file and a README that explains the nature of the folder. Each folder contains an index.scss file that imports all files within that folder. All folders can be imported at once via the top-level index.scss file.
`txt
css
└───src
├───tokens/
├───mixins/
├───core/
├───atomics/
└───components/
`
$3
The tokens folder is the place where we define variables for use. This folder produces no output when included by itself. It's primary purpose is to provide a central place to define shared values used across the framework.
All variable declarations in the tokens folder make use of the !default` flag, so you can override them by defining your own values before importing atlas-css.