toolkit 2.0.0.alpha.2 → 2.0.0.alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/stylesheets/toolkit/_colors.scss +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 520582ba1090b68c9a1dcf84bafa028e022456a6
|
4
|
+
data.tar.gz: 05f792031104b220791804de0d01989d8bbf05bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d073d0dcf555fe596c682f373c981f269d6fd52e976a1c857d809b985390585ec18d3508cf36aa1b85cd4a4a9b05eb42a0f9be1e8704d337bdd5e26a8fc0e93e
|
7
|
+
data.tar.gz: 32e84e94f8210551221174f8136dafde77c51192147cc35b280de5cab8873fbdb9be0a9b0f60b7b98b87bddf23595d2684607175c3a22c01558ee5fc0e9e18fb
|
@@ -36,20 +36,20 @@
|
|
36
36
|
// Tint Stack
|
37
37
|
@function tint-stack($color, $amounts...) {
|
38
38
|
@if length($amounts) > 0 {
|
39
|
-
@return
|
39
|
+
@return color-stack($color, toolkit-get('tint color'), $amounts);
|
40
40
|
}
|
41
41
|
@else {
|
42
|
-
@return
|
42
|
+
@return color-stack($color, toolkit-get('tint color'));
|
43
43
|
}
|
44
44
|
}
|
45
45
|
|
46
46
|
// Shade Stack
|
47
47
|
@function shade-stack($color, $amounts...) {
|
48
48
|
@if length($amounts) > 0 {
|
49
|
-
@return
|
49
|
+
@return color-stack($color, toolkit-get('shade color'), $amounts);
|
50
50
|
}
|
51
51
|
@else {
|
52
|
-
@return
|
52
|
+
@return color-stack($color, toolkit-get('shade color'));
|
53
53
|
}
|
54
54
|
}
|
55
55
|
|