# Agorapulse Style Dictionary

To generate the style dictionary based on the config file, you'll have to run the following command:

```bash
style-dictionary build
```

You should see something like this output:

```
Copying starter files...

Source style dictionary starter files created!

Running `style-dictionary build` for the first time to generate build artifacts.

css
✔︎  assets/variables.css
```

If everything goes well, you'll should have the following architecture.

```
├── README.md
├── config.json
├── tokens/
│   ├── reference/
│       ├── border-radius.json
│       ├── color.json
│       ├── font.json
│       ├── spacing.json
│   ├── system/
│       ├── border.json
│       ├── color.json
│       ├── icon.json
│       ├── text.json
├── build/
│   ├── css/
│      ├── variables.css

```
