--- title: Get PaperCSS menu: main weight: -270 --- #### Download Download the latest version (1.6.0) using either of the links below. Or download an older release via Github.
CSS File Minified CSS File Github Releases
#### NPM PaperCSS is available on NPM, current version 1.6.0. Install with npm install papercss --save and find the CSS in: * node_modules/papercss/dist/paper.css * node_modules/papercss/dist/paper.min.css #### CDN Don't want to download it? That's cool. You can just link to PaperCSS via [unpkg's CDN](https://unpkg.com/#/). You can use either: * [https://unpkg.com/papercss@1.6.0/dist/paper.css](https://unpkg.com/papercss@1.6.0/dist/paper.css) * [https://unpkg.com/papercss@1.6.0/dist/paper.min.css](https://unpkg.com/papercss@1.6.0/dist/paper.min.css) Here's a quck snippet to get started with PaperCSS: ```html Document

Some Fresh Title

This is where some content would go.

``` #### Build it Yourself If you'd rather customize things, you can build the CSS yourself via the git repo ```sh git clone https://github.com/papercss/papercss.git cd papercss npm install npm run build ``` Grab the CSS out of the /dist folder created You can also go into src/core/_config.scss before building to change around the global styles of your new CSS.