# Using Red Hat Common User Experience (RCUE) - Guide to move from PatternFly to RCUE
RCUE is based on [PatternFly](https://www.patternfly.org/), which is based on [Bootstrap v3](http://getbootstrap.com/). Think of RCUE as a "skinned" version of PatternFly. **RCUE is meant to be used as a replacement for PatternFly**, so please don't include the PatternFly (or Bootstrap) CSS if you are including the RCUE CSS in your project.
This guide will walk the steps to go from a PatternFly to RCUE styles:
## 1. Installation
### Get RCUE
RCUE can be installed and managed through [NPM](https://www.npmjs.com/). To do so, either add `rcue` as a dependency in your `package.json` or run the following:
```
npm install rcue --save
```
### What's Included
Within the `node_module/rcue/dist` folder you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
```
rcue/
├── dist/
│ ├── css/
│ │ │── rcue.min.css (* need to include)
│ │ │── rcue-additions.min.css (* need to include)
│ └── img/
│ │ │── branding materials and loading indicators
├── less/
│ ├── variables, mixin, and component Less files (may need to include if you want to customize the already built CSS)
└── tests/
├── example markup source files
```
RCUE provides compiled CSS (`rcue.*`), as well as compiled and minified CSS (`rcue.min.*`). CSS [source maps](https://developer.chrome.com/devtools/docs/css-preprocessors) (`rcue.*.map`) are available for use with certain browsers' developer tools.
## 2. Replace PatternFly with RCUE
Look for the PatternFly folder on your project and replace it with the RCUE folder you've just downloaded.
This swap will break your project paths, but don't worry! it's an easy fix we will discuss later on.
## 3. Using RCUE In Your Application
Your last task is to change the paths of your project and point them to the new RCUE folder.
1. Add the following CSS includes to your HTML file(s), adjusting path where needed:
2. Add the following script includes to your HTML file(s), adjusting where necessary to pull in only what you need:
## 6. Enjoy
You are done :smile:
If you have any question please contact [the UXD team](mailto:uxd-team@redhat.com).