# Styles
Jambonz UI styles are provided a couple of ways. The raw source for the styles is [SASS]() so if you're also using SASS you have the beneficial ability to directly import either all the UI SASS or just the variables and mixins for use extending the UI kit in your jambonz app. If you import all the SASS you don't need to use the raw CSS anywhere in your app. The imported SASS will compile into your final CSS output.
##### Loading the CSS
You can load the raw CSS directly into your app with a `` tag if you prefer that method. It is provided compiled, minified and minified + gzipped. Assuming you've copied the CSS from the `public` directory provided with the package into your own static directory and renamed it `jambonz-ui.css`:
```html
```
You can also import the CSS directly into your jambonz app entry point (JS) as most bundlers support extraction for this file type:
```js
import 'jambonz-ui/public/css/styles.css';
```
##### Available CSS selectors
Most of the styles are utilized directly by the [components](/dacs/jambonz-ui/components/) so you're better off just using those. These are the basic utility styles that can be used in an ad-hoc manor in your jambonz apps.
| CSS selector | Application |
|--------------|-------------|
| `bg--jambonz` | Applies main brand color as element `background-color` |
| `bg--black` | Applies color as element `background-color` |
| `bg--charcoal` | Applies color as element `background-color` |
| `bg--grey` | Applies color as element `background-color` |
| `bg--pink` | Applies color as element `background-color` |
| `bg--blue` | Applies color as element `background-color` |
| `bg--purple` | Applies color as element `background-color` |
| `bg--teal` | Applies color as element `background-color` |
| `color--jambonz` | Applies main brand color as element `color` |
| `color--blue` | Applies color as element `color` |
| `color--purple` | Applies color as element `color` |
| `color--teal` | Applies color as element `color` |
| `wrap` | Center contains content with a `max-width` and default left/right `padding` |
| `wrap-text` | Flex center justifies text—combine with a `max-width` |
| `pad` | Applies normalized top/bottom `padding` |
| `pad-b` | Applies normalized bottom `padding` |
| `pad-t` | Applies normalized top `padding` |
| `i` | Inline icon wrapper—normalizes display of `Icon` alongside text |
That `i` class is pretty useful. Here's an example of how it's used on this site to inline an icon with some text.
```jsx
design