aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index f02f6a7..631af7f 100644
--- a/README.md
+++ b/README.md
@@ -236,18 +236,18 @@ Example usage:
236// Usage: 236// Usage:
237 237
238p { 238p {
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
243a { 243a {
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```