diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
| @@ -236,18 +236,18 @@ Example usage: | |||
| 236 | // Usage: | 236 | // Usage: |
| 237 | 237 | ||
| 238 | p { | 238 | p { |
| 239 | color: iro-props-get(--text, 'light'); // #222 | 239 | color: iro-props-get-static(--text, 'light'); // #222 |
| 240 | background-color: iro-props-get(--background, 'light'); // #fff | 240 | background-color: iro-props-get-static(--background, 'light'); // #fff |
| 241 | } | 241 | } |
| 242 | 242 | ||
| 243 | a { | 243 | a { |
| 244 | color: iro-props-get(--link --idle --text, 'light'); // #000 | 244 | color: iro-props-get-static(--link --idle --text, 'light'); // #000 |
| 245 | border-bottom: 1px solid iro-props-get(--link --idle --underline, 'light'); // #f00 | 245 | border-bottom: 1px solid iro-props-get-static(--link --idle --underline, 'light'); // #f00 |
| 246 | text-decoration: none; | 246 | text-decoration: none; |
| 247 | 247 | ||
| 248 | &:hover { | 248 | &:hover { |
| 249 | color: iro-props-get(--link --hover --text, 'light'); // #f00 | 249 | color: iro-props-get-static(--link --hover --text, 'light'); // #f00 |
| 250 | border-bottom-color: iro-props-get(--link --hover --underline, 'light'); // #f00 | 250 | border-bottom-color: iro-props-get-static(--link --hover --underline, 'light'); // #f00 |
| 251 | } | 251 | } |
| 252 | } | 252 | } |
| 253 | ``` | 253 | ``` |
