diff --git a/packages/react/.eslintignore b/packages/react/.eslintignore
index 7dba084..6398028 100644
--- a/packages/react/.eslintignore
+++ b/packages/react/.eslintignore
@@ -1,3 +1,4 @@
node_modules
dist
-src/cunningham-tokens.ts
\ No newline at end of file
+src/cunningham-tokens.ts
+src/cunningham-tokens.js
\ No newline at end of file
diff --git a/packages/react/.storybook/preview-head.html b/packages/react/.storybook/preview-head.html
index 0c1f803..79c8a0d 100644
--- a/packages/react/.storybook/preview-head.html
+++ b/packages/react/.storybook/preview-head.html
@@ -1,4 +1,19 @@
+
\ No newline at end of file
diff --git a/packages/react/package.json b/packages/react/package.json
index 9f186ee..99c084b 100644
--- a/packages/react/package.json
+++ b/packages/react/package.json
@@ -20,9 +20,9 @@
],
"scripts": {
"lint": "eslint . 'src/**/*.{ts,tsx}'",
- "dev": "yarn storybook & nodemon --watch src --ext '*' --ignore src/cunningham-tokens.ts --ignore src/cunningham-tokens.css --exec npm run build",
+ "dev": "yarn storybook & nodemon --watch src --ext '*' --ignore src/cunningham-tokens.ts --ignore src/cunningham-tokens.js --ignore src/cunningham-tokens.css --exec npm run build",
"build": "tsc && yarn build-theme && vite build",
- "build-theme": "cunningham -o src -s html -g css,ts",
+ "build-theme": "cunningham -o src -g css,ts,js",
"preview": "vite preview",
"test": "FORCE_COLOR=1 vitest run",
"test-watch": "vitest",
diff --git a/packages/react/src/docs/colors.stories.mdx b/packages/react/src/docs/colors.stories.mdx
new file mode 100644
index 0000000..7212157
--- /dev/null
+++ b/packages/react/src/docs/colors.stories.mdx
@@ -0,0 +1,114 @@
+import { Canvas, Meta, Story, Source, ArgsTable } from '@storybook/addon-docs'; import {
+ tokens
+} from '../cunningham-tokens';
+
+
+
+export const colors = ['primary', 'secondary', 'greyscale', 'success', 'info', 'warning', 'danger'];
+export const tints = [900, 800, 700, 600, 500, 400, 300, 200, 100];
+
+# Typo
+
+Cunningham comes with an existing toolkit to deal with colors, and it's easy. 🎨
+
+## Background color
+
+You can use custom utility classes to set the background color of an element. These classes are named using the format `.bg-{color}`.
+
+
+ `}
+/>
+
+You can find all existing classes below.
+
+
+
+## Text color
+
+You can use custom utility classes to set the color attribute of an element. These classes are named using the format `.clr-{color}`.
+
+Nice primary-500 colored text
+ `}
+/>
+
+You can find all existing classes below.
+
+
+
+Pay attention the special `{color}-text` variation. Each color must have a text color variation, which is supposed to
+render readable text on top of a -500 background of its own color variation. Please check out the following examples:
+
+
+
+## Customize
+
+You can customize the values of the color design tokens with the configuration file this way:
+
+
\ No newline at end of file
diff --git a/packages/react/src/docs/spacings.stories.mdx b/packages/react/src/docs/spacings.stories.mdx
new file mode 100644
index 0000000..a915ebc
--- /dev/null
+++ b/packages/react/src/docs/spacings.stories.mdx
@@ -0,0 +1,62 @@
+import { Canvas, Meta, Story, Source, ArgsTable } from '@storybook/addon-docs';
+import { tokens } from '../cunningham-tokens';
+
+
+
+# Spacings
+
+Cunningham comes with an existing toolkit to deal with spacings. 📏
+
+Here are the existing spacings:
+
+
+
+Those can be used both with paddings and margins.
+
+## Margins
+
+You can use the following classes to add margins to your elements:
+
+| Class | Equivalent |
+|--------------|----------------------------|
+| m-{spacing} | `margin: {spacing}` |
+| mt-{spacing} | `margin-top: {spacing}` |
+| mr-{spacing} | `margin-right: {spacing}` |
+| mb-{spacing} | `margin-bottom: {spacing}` |
+| ml-{spacing} | `margin-left: {spacing}` |
+
+## Paddings
+
+You can use the following classes to add paddings to your elements:
+
+| Class | Equivalent |
+|--------------|----------------------------|
+| p-{spacing} | `padding: {spacing}` |
+| pt-{spacing} | `padding-top: {spacing}` |
+| pr-{spacing} | `padding-right: {spacing}` |
+| pb-{spacing} | `padding-bottom: {spacing}` |
+| pl-{spacing} | `padding-left: {spacing}` |
+
+
+## Example
+
+
diff --git a/packages/react/src/docs/typo.stories.mdx b/packages/react/src/docs/typo.stories.mdx
index 769b352..2c45ce6 100644
--- a/packages/react/src/docs/typo.stories.mdx
+++ b/packages/react/src/docs/typo.stories.mdx
@@ -106,11 +106,11 @@ class on every dom element.
`}
/>
-
You can customize the values of the font family design tokens with the configuration file this way: