colorkit 0.4.5 → 0.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: df3e1d1035b6c4fae82cadcdd2bf3e52b2886cb6
4
+ data.tar.gz: e5de7f6ac89867d0c86d5f1697352693684034c6
5
+ SHA512:
6
+ metadata.gz: beff267396e26d7d1b576103b1e01a748db6caf17836b70546a04c3c9a562f0fc11b0ecdc3a20f7ea15ea359303f125933400b5d465e3c9b8c21385ac3f17842
7
+ data.tar.gz: 4e8b6c1db9ff648915ca42d3f54c3ae60e1e712827adf49def27c6c698e2b8390b52e730141339dd58abcde41e9fa9f9aaf759aec76148c844963491c4f0381e
data/README.md CHANGED
@@ -61,8 +61,7 @@ color variables. Be sure to `@include` towards the top of your project's main
61
61
  stylesheet to be sure these variables are available project wide.
62
62
 
63
63
  ###Credit
64
- Color-stack functions were borrowed from [Snugug's](https://twitter.com/Snugug) excellent
65
- [toolkit](https://github.com/Snugug/toolkit#colour-functions)
64
+ Color-stack functions were borrowed from [Snugug's](https://twitter.com/Snugug) excellent [toolkit](https://github.com/Snugug/toolkit#colour-functions) which has now been moved over to the [Team Sass GitHub](https://github.com/Team-Sass/toolkit).
66
65
 
67
66
  <hr>
68
67
  ### License
@@ -19,13 +19,13 @@
19
19
  *
20
20
  * used in stack functions to create multiple color variants
21
21
  */
22
- $default-amounts : 20% 40% 60% 70% 80% !default;
23
- $sixths: 15% 30% 45% 60% 75% 90%;
22
+ $default-amounts: 20% 40% 60% 70% 80% !default;
23
+ $sixths: 15% 30% 45% 60% 75% 90%;
24
24
 
25
- $amounts : $default-amounts !default;
26
- $default-tints : $default-amounts !default;
27
- $default-shades : $default-amounts !default;
28
- $default-tones : $default-amounts !default;
25
+ $amounts: $default-amounts !default;
26
+ $default-tints: $default-amounts !default;
27
+ $default-shades: $default-amounts !default;
28
+ $default-tones: $default-amounts !default;
29
29
 
30
30
 
31
31
  /**
@@ -1,43 +1,43 @@
1
1
  /**
2
- * Greys
2
+ * grays
3
3
  *
4
4
  */
5
5
 
6
- $grey: #808080 !default;
6
+ $gray: #808080 !default;
7
7
 
8
8
  /**
9
9
  * Tints
10
10
  */
11
- $grey--tint-stack: tint-stack($grey, $sixths);
11
+ $gray--tint-stack: tint-stack($gray, $sixths);
12
12
 
13
- $grey--tint-1: nth($grey--tint-stack, 2);
14
- $grey--tint-2: nth($grey--tint-stack, 3);
15
- $grey--tint-3: nth($grey--tint-stack, 4);
16
- $grey--tint-4: nth($grey--tint-stack, 5);
17
- $grey--tint-5: nth($grey--tint-stack, 6);
18
- $grey--tint-6: nth($grey--tint-stack, 7);
13
+ $gray--tint-1: nth($gray--tint-stack, 2);
14
+ $gray--tint-2: nth($gray--tint-stack, 3);
15
+ $gray--tint-3: nth($gray--tint-stack, 4);
16
+ $gray--tint-4: nth($gray--tint-stack, 5);
17
+ $gray--tint-5: nth($gray--tint-stack, 6);
18
+ $gray--tint-6: nth($gray--tint-stack, 7);
19
19
 
20
20
  /**
21
21
  * Tones
22
22
  */
23
- $grey--tone-stack: tone-stack($grey, $sixths);
23
+ $gray--tone-stack: tone-stack($gray, $sixths);
24
24
 
25
- $grey--tone-1: nth($grey--tone-stack, 2);
26
- $grey--tone-2: nth($grey--tone-stack, 3);
27
- $grey--tone-3: nth($grey--tone-stack, 4);
28
- $grey--tone-4: nth($grey--tone-stack, 5);
29
- $grey--tone-5: nth($grey--tone-stack, 6);
30
- $grey--tone-6: nth($grey--tone-stack, 7);
25
+ $gray--tone-1: nth($gray--tone-stack, 2);
26
+ $gray--tone-2: nth($gray--tone-stack, 3);
27
+ $gray--tone-3: nth($gray--tone-stack, 4);
28
+ $gray--tone-4: nth($gray--tone-stack, 5);
29
+ $gray--tone-5: nth($gray--tone-stack, 6);
30
+ $gray--tone-6: nth($gray--tone-stack, 7);
31
31
 
32
32
  /**
33
33
  * Shades
34
34
  */
35
- $grey--shade-stack: shade-stack($grey, $sixths);
36
-
37
- $grey--shade-1: nth($grey--shade-stack, 2);
38
- $grey--shade-2: nth($grey--shade-stack, 3);
39
- $grey--shade-3: nth($grey--shade-stack, 4);
40
- $grey--shade-4: nth($grey--shade-stack, 5);
41
- $grey--shade-5: nth($grey--shade-stack, 6);
42
- $grey--shade-6: nth($grey--shade-stack, 7);
35
+ $gray--shade-stack: shade-stack($gray, $sixths);
36
+
37
+ $gray--shade-1: nth($gray--shade-stack, 2);
38
+ $gray--shade-2: nth($gray--shade-stack, 3);
39
+ $gray--shade-3: nth($gray--shade-stack, 4);
40
+ $gray--shade-4: nth($gray--shade-stack, 5);
41
+ $gray--shade-5: nth($gray--shade-stack, 6);
42
+ $gray--shade-6: nth($gray--shade-stack, 7);
43
43
 
metadata CHANGED
@@ -1,46 +1,37 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: colorkit
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 4
8
- - 5
9
- version: 0.4.5
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.6
10
5
  platform: ruby
11
- authors:
6
+ authors:
12
7
  - Sam Ashley
13
8
  autorequire:
14
9
  bindir: bin
15
10
  cert_chain: []
16
-
17
- date: 2013-06-22 00:00:00 -06:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
11
+ date: 2013-07-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
21
14
  name: compass
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- requirements:
25
- - - ">="
26
- - !ruby/object:Gem::Version
27
- segments:
28
- - 0
29
- - 13
30
- - alpha
31
- - 2
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
32
19
  version: 0.13.alpha.2
33
20
  type: :runtime
34
- version_requirements: *id001
35
- description: A Compass extension for building harmonious color schemes in Sass
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.13.alpha.2
27
+ description: Built on Compass and Sass Colorkit provides a sensible default color
28
+ library along additional functions and mixins that make generating harmonious color
29
+ schemes a breeze.
36
30
  email: sam@kwaledesign.com
37
31
  executables: []
38
-
39
32
  extensions: []
40
-
41
33
  extra_rdoc_files: []
42
-
43
- files:
34
+ files:
44
35
  - README.md
45
36
  - LICENSE
46
37
  - lib/colorkit.rb
@@ -52,7 +43,6 @@ files:
52
43
  - stylesheets/colorkit/color-library/_blue-violets.scss
53
44
  - stylesheets/colorkit/color-library/_blues.scss
54
45
  - stylesheets/colorkit/color-library/_browns.scss
55
- - stylesheets/colorkit/color-library/_css3-color-keywords.scss
56
46
  - stylesheets/colorkit/color-library/_grays.scss
57
47
  - stylesheets/colorkit/color-library/_greens.scss
58
48
  - stylesheets/colorkit/color-library/_oranges.scss
@@ -60,42 +50,33 @@ files:
60
50
  - stylesheets/colorkit/color-library/_red-violets.scss
61
51
  - stylesheets/colorkit/color-library/_reds.scss
62
52
  - stylesheets/colorkit/color-library/_violets.scss
63
- - stylesheets/colorkit/color-library/_whites.scss
64
53
  - stylesheets/colorkit/color-library/_yellow-greens.scss
65
54
  - stylesheets/colorkit/color-library/_yellow-oranges.scss
66
55
  - stylesheets/colorkit/color-library/_yellows.scss
67
56
  - templates/project/_color-pallet.scss
68
57
  - templates/project/manifest.rb
69
58
  - templates/project/screen.scss
70
- has_rdoc: true
71
- homepage: http://wwww.kwaledesign.com
59
+ homepage: https://kwaledesign.github.io/Colorkit
72
60
  licenses: []
73
-
61
+ metadata: {}
74
62
  post_install_message:
75
63
  rdoc_options: []
76
-
77
- require_paths:
64
+ require_paths:
78
65
  - lib
79
- required_ruby_version: !ruby/object:Gem::Requirement
80
- requirements:
81
- - - ">="
82
- - !ruby/object:Gem::Version
83
- segments:
84
- - 0
85
- version: "0"
86
- required_rubygems_version: !ruby/object:Gem::Requirement
87
- requirements:
88
- - - ">="
89
- - !ruby/object:Gem::Version
90
- segments:
91
- - 0
92
- version: "0"
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
93
76
  requirements: []
94
-
95
77
  rubyforge_project:
96
- rubygems_version: 1.3.6
78
+ rubygems_version: 2.0.3
97
79
  signing_key:
98
- specification_version: 3
80
+ specification_version: 4
99
81
  summary: A Compass extension for building harmonious color schemes in Sass
100
82
  test_files: []
101
-
@@ -1,190 +0,0 @@
1
- /**
2
- * Level 3 CSS Color Module Keywords
3
- *
4
- * The color keywords defined in SVG: http://www.w3.org/TR/css3-color/
5
- * as referenced by the CSS Color Module Level 3: http://www.w3.org/TR/SVG/types.html#ColorKeywords
6
- */
7
-
8
-
9
- /**
10
- * Reds
11
- */
12
- $indianred: indianred;
13
- $lightcoral: lightcoral;
14
- $salmon: salmon;
15
- $darksalmon: darksalmon;
16
- $crimson: crimson;
17
- $red: red;
18
- $firebrick: firebrick;
19
- $darkred: darkred;
20
-
21
- /**
22
- * Pinks
23
- */
24
- $pink: pink;
25
- $lightpink: lightpink;
26
- $hotpink: hotpink;
27
- $deeppink: deeppink;
28
- $mediumvioletred: mediumvioletred;
29
- $palevioletred: palevioletred;
30
-
31
- /**
32
- * Oranges
33
- */
34
- $lightsalmon: lightsalmon;
35
- $coral: coral;
36
- $tomato: tomato;
37
- $orangered: orangered;
38
- $darkorange: darkorange;
39
- $orange: orange;
40
-
41
- /**
42
- * Yellows
43
- */
44
- $gold: gold;
45
- $yellow: yellow;
46
- $lightyellow: lightyellow;
47
- $lemonchiffon: lemonchiffon;
48
- $lightgoldenrodyellow: lightgoldenrodyellow;
49
- $papayawhip: papayawhip;
50
- $moccasin: moccasin;
51
- $peachpuff: peachpuff;
52
- $palegoldenrod: palegoldenrod;
53
- $khaki: khaki;
54
- $darkkhaki: darkkhaki;
55
-
56
- /**
57
- * Purples
58
- */
59
- $lavender: lavender;
60
- $thistle: thistle;
61
- $plum: plum;
62
- $violet: violet;
63
- $orchid: orchid;
64
- $magenta: magenta;
65
- $mediumorchid: mediumorchid;
66
- $mediumpurple: mediumpurple;
67
- $blueviolet: blueviolet;
68
- $darkviolet: darkviolet;
69
- $darkorchid: darkorchid;
70
- $darkmagenta: darkmagenta;
71
- $purple: purple;
72
- $indigo: indigo;
73
- $slateblue: slateblue;
74
- $darkslateblue: darkslateblue;
75
- $mediumslateblue: mediumslateblue;
76
-
77
- /**
78
- * Greens
79
- */
80
- $greenyellow: greenyellow;
81
- $chartreuse: chartreuse;
82
- $lawngreen: lawngreen;
83
- $lime: lime;
84
- $limegreen: limegreen;
85
- $palegreen: palegreen;
86
- $lightgreen: lightgreen;
87
- $mediumspringgreen: mediumspringgreen;
88
- $springgreen: springgreen;
89
- $mediumseagreen: mediumseagreen;
90
- $seagreen: seagreen;
91
- $forestgreen: forestgreen;
92
- $green: green;
93
- $darkgreen: darkgreen;
94
- $yellowgreen: yellowgreen;
95
- $olivedrab: olivedrab;
96
- $olive: olive;
97
- $darkolivegreen: darkolivegreen;
98
- $mediumaquamarine: mediumaquamarine;
99
- $turquoise: turquoise;
100
- $darkseagreen: darkseagreen;
101
- $lightseagreen: lightseagreen;
102
- $darkcyan: darkcyan;
103
- $teal: teal;
104
-
105
- /**
106
- * Blues/Cyans
107
- */
108
- $cyan: cyan;
109
- $lightcyan: lightcyan;
110
- $paleturquoise: paleturquoise;
111
- $aquamarine: aquamarine;
112
- $mediumturquoise: mediumturquoise;
113
- $darkturquoise: darkturquoise;
114
- $cadetblue: cadetblue;
115
- $steelblue: steelblue;
116
- $lightsteelblue: lightsteelblue;
117
- $powderblue: powderblue;
118
- $lightblue: lightblue;
119
- $skyblue: skyblue;
120
- $deepskyblue: deepskyblue;
121
- $dodgerblue: dodgerblue;
122
- $cornflowerblue: cornflowerblue;
123
- $royalblue: royalblue;
124
- $blue: blue;
125
- $mediumblue: mediumblue;
126
- $darkblue: darkblue;
127
- $navy: navy;
128
- $midnightblue: midnightblue;
129
-
130
- /**
131
- * Browns
132
- */
133
- $cornsilk: cornsilk;
134
- $blanchedalmond: blanchedalmond;
135
- $bisque: bisque;
136
- $navajowhite: navajowhite;
137
- $wheat: wheat;
138
- $burlywood: burlywood;
139
- $tan: tan;
140
- $rosybrown: rosybrown;
141
- $sandybrown: sandybrown;
142
- $goldenrod: goldenrod;
143
- $darkgoldenrod: darkgoldenrod;
144
- $peru: peru;
145
- $chocolate: chocolate;
146
- $saddlebrown: saddlebrown;
147
- $sienna: sienna;
148
- $brown: brown;
149
- $maroon: maroon;
150
-
151
- /**
152
- * Whites
153
- */
154
- $white: white;
155
- $snow: snow;
156
- $honeydew: honeydew;
157
- $mintcream: mintcream;
158
- $azure: azure;
159
- $aliceblue: aliceblue;
160
- $ghostwhite: ghostwhite;
161
- $whitesmoke: whitesmoke;
162
- $seashell: seashell;
163
- $beige: beige;
164
- $oldlace: oldlace;
165
- $floralwhite: floralwhite;
166
- $ivory: ivory;
167
- $antiquewhite: antiquewhite;
168
- $linen: linen;
169
- $lavenderblush: lavenderblush;
170
- $mistyrose: mistyrose;
171
-
172
- /**
173
- * Greys
174
- */
175
- $gainsboro: gainsboro;
176
- $lightgrey: lightgrey;
177
- $silver: silver;
178
- $darkgrey: darkgrey;
179
- $grey: gray;
180
- $dimgrey: dimgrey;
181
- $lightslategrey: lightslategrey;
182
- $darkslategrey: darkslategrey;
183
- $black: black;
184
- // alternate spellings:
185
- $darkgrey: darkgrey;
186
- $darkslategray: darkslategrey;
187
- $dimgray: dimgrey;
188
- $gray: gray;
189
- $lightgray: lightgrey;
190
-
@@ -1,43 +0,0 @@
1
- /**
2
- * Whites
3
- *
4
- */
5
-
6
- $white: white(0) !default;
7
-
8
- /**
9
- * Tints
10
- */
11
- $white--tint-stack: tint-stack($white, $sixths);
12
-
13
- $white--tint-1: nth($white--tint-stack, 2);
14
- $white--tint-2: nth($white--tint-stack, 3);
15
- $white--tint-3: nth($white--tint-stack, 4);
16
- $white--tint-4: nth($white--tint-stack, 5);
17
- $white--tint-5: nth($white--tint-stack, 6);
18
- $white--tint-6: nth($white--tint-stack, 7);
19
-
20
- /**
21
- * Tones
22
- */
23
- $white--tone-stack: tone-stack($white, $sixths);
24
-
25
- $white--tone-1: nth($white--tone-stack, 2);
26
- $white--tone-2: nth($white--tone-stack, 3);
27
- $white--tone-3: nth($white--tone-stack, 4);
28
- $white--tone-4: nth($white--tone-stack, 5);
29
- $white--tone-5: nth($white--tone-stack, 6);
30
- $white--tone-6: nth($white--tone-stack, 7);
31
-
32
- /**
33
- * Shades
34
- */
35
- $white--shade-stack: shade-stack($white, $sixths);
36
-
37
- $white--shade-1: nth($white--shade-stack, 2);
38
- $white--shade-2: nth($white--shade-stack, 3);
39
- $white--shade-3: nth($white--shade-stack, 4);
40
- $white--shade-4: nth($white--shade-stack, 5);
41
- $white--shade-5: nth($white--shade-stack, 6);
42
- $white--shade-6: nth($white--shade-stack, 7);
43
-