gulp dist build

This commit is contained in:
2022-01-28 14:28:32 +01:00
parent 385d2e78b5
commit 041ce84965
88 changed files with 4428 additions and 1543 deletions

View File

@@ -1312,24 +1312,24 @@
<h5>Variables in functions</h5>
<p>In addition, we added color functions that can be used inside <code>html</code> and <code>svg</code> files.</p>
<p>Convert HEX color to rgba with <code>[@@F]RGBA[color, opacity]</code> function. The opacity values can be between <code>0.1</code> to <code>1</code> same like in SASS.</p>
<p>Convert HEX color to rgba with <code>gulpRGBA[color, opacity]</code> function. The opacity values can be between <code>0.1</code> to <code>1</code> same like in SASS.</p>
<pre class="rounded prism-light mb-4">
<code class="language-js" data-lang="js">
[@@F]RGBA[@@vars.style.color,.5]
gulpRGBA[@@vars.style.color,.5]
</code>
</pre>
<p>Make color lighter with <code>[@@F]Lighten[color, value]</code> function. The larger the integer value, the lighter.</p>
<p>Make color lighter with <code>gulpLighten[color, value]</code> function. The larger the integer value, the lighter.</p>
<pre class="rounded prism-light mb-4">
<code class="language-js" data-lang="js">
[@@F]Lighten[@@vars.style.color, 50]
gulpLighten[@@vars.style.color, 50]
</code>
</pre>
<p>Make color darker with <code>[@@F]Darken[color, value]</code> function. The larger the integer value, the lighter.</p>
<p>Make color darker with <code>gulpDarken[color, value]</code> function. The larger the integer value, the lighter.</p>
<pre class="rounded prism-light">
<code class="language-js" data-lang="js">
[@@F]Darken[@@vars.style.color, 50]
gulpDarken[@@vars.style.color, 50]
</code>
</pre>