> For the complete documentation index, see [llms.txt](https://docs-drift-angular.g-axon.work/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-drift-angular.g-axon.work/stylesheets/rtl-version.md).

# RTL Version

All the layouts have the pre-generated RTL CSS files at the following path:

```
src / assets / css / {layout} / {theme_name}-rtl.css
src / assets / css / {layout} / {theme_name}-rtl.min.css
```

To customize the styling in SCSS, follow the topic [Theme Customization](/stylesheets/theme-customization.md) and then to generate the RTL version, follow the instructions given in the below section.

#### Generate RTL files after customization

In order to generate the RTL files after the customization done in SCSS. You need to run the following Gulp commands:

```css
$ gulp style-rtl-{layout}-{theme_name}

/* For example: $ gulp style-rtl-crm-main */
```

To generate a minified version, use the following command

```css
$ gulp min-style-rtl-{layout}-{theme_name}

/* For example: $ gulp style-rtl-crm-main */
```
