From e361a8f73a7c0ef8fa9dc013f136d295a3d01de5 Mon Sep 17 00:00:00 2001 From: Volpeon Date: Wed, 17 Mar 2021 17:56:38 +0100 Subject: Improved property tree function names --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index f02f6a7..631af7f 100644 --- a/README.md +++ b/README.md @@ -236,18 +236,18 @@ Example usage: // Usage: p { - color: iro-props-get(--text, 'light'); // #222 - background-color: iro-props-get(--background, 'light'); // #fff + color: iro-props-get-static(--text, 'light'); // #222 + background-color: iro-props-get-static(--background, 'light'); // #fff } a { - color: iro-props-get(--link --idle --text, 'light'); // #000 - border-bottom: 1px solid iro-props-get(--link --idle --underline, 'light'); // #f00 + color: iro-props-get-static(--link --idle --text, 'light'); // #000 + border-bottom: 1px solid iro-props-get-static(--link --idle --underline, 'light'); // #f00 text-decoration: none; &:hover { - color: iro-props-get(--link --hover --text, 'light'); // #f00 - border-bottom-color: iro-props-get(--link --hover --underline, 'light'); // #f00 + color: iro-props-get-static(--link --hover --text, 'light'); // #f00 + border-bottom-color: iro-props-get-static(--link --hover --underline, 'light'); // #f00 } } ``` -- cgit v1.3.1