compass-colors 0.2.0 → 0.2.1
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.
- data/README.markdown +3 -3
- data/Rakefile +1 -1
- data/VERSION.yml +3 -2
- metadata +3 -3
data/README.markdown
CHANGED
@@ -29,7 +29,7 @@ With all of these themes, you must pick a base color and the theme takes it from
|
|
29
29
|
* Basic/Monochromatic (basic)
|
30
30
|
* Complementary (complementary)
|
31
31
|
* Triadic (triadic)
|
32
|
-
* Split Complementary (
|
32
|
+
* Split Complementary (split_complement)
|
33
33
|
* Analogous (analogous)
|
34
34
|
|
35
35
|
Sass Functions Provided
|
@@ -37,8 +37,8 @@ Sass Functions Provided
|
|
37
37
|
|
38
38
|
* `lighten(color, percentage)` - Create a color lighter by the percent amount provided.
|
39
39
|
* `darken(color, percentage)` - Create a color darker by the percent amount provided.
|
40
|
-
* `saturate(color, percentage)` -
|
41
|
-
* `desaturate(color, percentage)` -
|
40
|
+
* `saturate(color, percentage)` - Increase the saturation of a color by the percent amount provided.
|
41
|
+
* `desaturate(color, percentage)` - Decrease the saturation of a color by the percent amount provided.
|
42
42
|
* `hue(color)` - Extract the hue from the color in degrees (0-360). Suitable to be passed as the first argument of hsl.
|
43
43
|
* `saturation(color)` - Extract the saturation from the color in percent (0-100). Suitable to be passed as the second argument of hsl.
|
44
44
|
* `luminosity(color)` - Extract the luminosity from the color in percent (0-100). Suitable to be passed as the third argument of hsl.
|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ begin
|
|
8
8
|
gemspec.description = "Sass Extensions and color theme templates to make working with colors easier and more maintainable."
|
9
9
|
gemspec.authors = ["Chris Eppstein"]
|
10
10
|
gemspec.has_rdoc = false
|
11
|
-
gemspec.add_dependency('
|
11
|
+
gemspec.add_dependency('compass', '>= 0.8.7')
|
12
12
|
gemspec.files = []
|
13
13
|
gemspec.files << "README.markdown"
|
14
14
|
gemspec.files << "LICENSE.markdown"
|
data/VERSION.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-colors
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Eppstein
|
@@ -9,11 +9,11 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-10-20 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: compass
|
17
17
|
type: :runtime
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|