|
1 | 1 | # @theme-ui/custom-properties
|
2 | 2 |
|
3 |
| -Generate CSS custom properties for use with Theme UI. |
| 3 | +Extend [ThemeUI](https://theme-ui.com)'s core functionality with CSS Custom Properties. |
4 | 4 |
|
5 |
| -https://theme-ui.com |
6 | 5 |
|
7 | 6 | ## Installation
|
8 | 7 |
|
9 | 8 | ```
|
10 | 9 | yarn add @theme-ui/custom-properties
|
11 | 10 | ```
|
12 | 11 |
|
| 12 | +## API |
13 | 13 |
|
14 |
| -## Usage |
| 14 | +### toCustomProperties |
15 | 15 |
|
16 |
| -Transform your Theme UI compliant theme config with the library: |
| 16 | +Transform your Theme UI compliant theme to an object of CSS Custom Properties. |
17 | 17 |
|
18 |
| -```js |
19 |
| -const toCustomProperties = require('@theme-ui/custom-properties') |
20 |
| -const theme = require('../theme'); |
| 18 | +**Type**: `Function` |
21 | 19 |
|
22 |
| -module.exports = () => { |
23 |
| - const customProperties = toCustomProperties(theme, '🍭'); |
| 20 | +**Parameters**: |
| 21 | +1. theme - The theme ui specification object |
| 22 | +2. prefix - An optional string prefix for the css custom property (_optional_) |
24 | 23 |
|
25 |
| - return customProperties; |
| 24 | +**Returns**: `Object` |
| 25 | +```js |
| 26 | +// Example response |
| 27 | +{ |
| 28 | + '--color-primary': '#2980b9', |
| 29 | + '--color-secondary': '#f7df1e', |
| 30 | + '--fontSize-0': 12, |
| 31 | + ' -fontSize-1': 14, |
| 32 | + '--fontSize-2': 16, |
| 33 | + '--fontSize-3': 24, |
| 34 | + '--fontSize-4': 32, |
| 35 | + '--fontSize-5': 48, |
| 36 | + '--fontSize-6': 64 |
26 | 37 | }
|
27 | 38 | ```
|
28 | 39 |
|
| 40 | +**Example**: |
| 41 | +```js |
| 42 | +import toCustomProperties from '@theme-ui/custom-properties'; |
| 43 | +import theme from '../theme'; |
29 | 44 |
|
30 |
| -## Parameters |
| 45 | +const customProperties = toCustomProperties(theme, '🍭'); |
| 46 | +console.log(customProperties); |
| 47 | +``` |
31 | 48 |
|
32 |
| -The @theme-ui/custom-properties function takes two parameters: |
| 49 | +### withCustomProperties |
| 50 | +Extend the base `ThemeProvider` to allow native styling by using CSS Custom Properties. |
33 | 51 |
|
34 |
| -```js |
35 |
| -toCustomProperties( $theme, $prefix ); |
| 52 | +**Type**: `Function` |
| 53 | + |
| 54 | +**Parameters**: |
| 55 | +1. prefix - An optional string prefix for the css custom property (_optional_) |
| 56 | +2. className - An optional class name to add onto the wrapper. All CSS Custom Properties will be defined on this element. |
| 57 | + |
| 58 | +**Returns** a React Component which extends the default `ThemeProvider` by adding CSS Custom Properties to the wrapper element. |
| 59 | + |
| 60 | +For example: |
| 61 | + |
| 62 | +```jsx |
| 63 | +const ExtendedThemeProvider = withCustomProperties('app-name', 'extended-theme-provider'); |
| 64 | + |
| 65 | +ReactDOM.render( |
| 66 | + <ExtendedThemeProvider theme={theme}> |
| 67 | + <p> Hello world! </p> |
| 68 | + </ExtendedThemeProvider>, |
| 69 | + root |
| 70 | + ); |
36 | 71 | ```
|
37 | 72 |
|
38 |
| -1. theme - The theme ui specification object |
39 |
| -1. prefix - An optional prefix for the css custom property _optional_ |
| 73 | +will render: |
| 74 | + |
| 75 | +```jsx |
| 76 | + <div class="extended-theme-provider"> |
| 77 | + <p> Hello world! </p> |
| 78 | + </div> |
| 79 | +``` |
| 80 | + |
| 81 | +Then in CSS we can do something like: |
| 82 | + |
| 83 | +```css |
| 84 | +p { |
| 85 | + color: var(--app-name-color-primary); |
| 86 | + background: var(--app-name-color-secondary); |
| 87 | +} |
| 88 | +``` |
40 | 89 |
|
| 90 | +These CSS Custom Properties are in total sync with the theme. Also, sub-theming works as expected. |
| 91 | + |
| 92 | +```jsx |
| 93 | +const theme = { |
| 94 | + colors: { |
| 95 | + primary: 'red', |
| 96 | + secondary: 'blue' |
| 97 | + } |
| 98 | +}; |
| 99 | + |
| 100 | +const subTheme = { |
| 101 | + colors: { |
| 102 | + primary: 'orange' |
| 103 | + } |
| 104 | +}; |
| 105 | + |
| 106 | +const ExtendedThemeProvider = withCustomProperties('app-name'); |
| 107 | + |
| 108 | +ReactDOM.render( |
| 109 | + <ExtendedThemeProvider theme={theme}> |
| 110 | + <p> Hello world! </p> // red on a blue background |
| 111 | + |
| 112 | + <ExtendedThemeProvider theme={subTheme}> |
| 113 | + <p> Hello Aliens! </p> // orange on a blue background |
| 114 | + </ExtendedThemeProvider> |
| 115 | + |
| 116 | + </ExtendedThemeProvider>, |
| 117 | + root |
| 118 | +); |
| 119 | +``` |
| 120 | + |
| 121 | +```css |
| 122 | +p { |
| 123 | + color: var(--app-name-color-primary); |
| 124 | + background: var(--app-name-color-secondary); |
| 125 | +} |
| 126 | +``` |
0 commit comments