clrs 1.2.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f2c1d47ea38aef87c6d12df22eda7eebb012461
4
- data.tar.gz: 5c7606c305116d409c329157ceb872db551dfccc
3
+ metadata.gz: 479dcf2eaaf4404d275228b02055b6dc8b74abbe
4
+ data.tar.gz: 4793d887922387e209467d2b54f60eb02236830c
5
5
  SHA512:
6
- metadata.gz: 50039fefa8ff2ebaec360016782d89c3c6fa64bc7d6e3ba9c11bcfc864ce07423e7951828d36eeb04c5a09c9ee962af736caf1a3d377fb32c4bbc6195b3b80b9
7
- data.tar.gz: e9d5ee9a9b507ca2695134766c1ced341c144dc814e7ad3e5a247549d0313618b1861aaa29a7a882488758a93db66bd6484269285c7dfe453d6fc147ff97009f
6
+ metadata.gz: 705612038db99d97c6796dfad81f3ba135f68b960d2f90b34ea78b3c5ad6d39f8414e4d73d75fa5d1b66658a6a2d9e52b1b6098dd887450553c21fc71a1a50d2
7
+ data.tar.gz: 7baef5bc7982770660ec54266e634848fd424e43cf753f06775653ea1890e17cd1ff3df630fc49bb49d595b421a352a95124f5be590eb34fd3b7d9ce5a25199e
@@ -1,141 +1,11 @@
1
- /* Courtesy of http://mrmrs.io/colors-saturated/ by @mrmrs_ */
1
+ /***
2
2
 
3
- // COLOR VARIABLES
3
+ colors.css v0.2.0
4
+ http://clrs.cc
5
+ @mrmrs
6
+ MIT License
4
7
 
5
- $navy: #002B75;
6
- $blue: #0050D4;
7
- $aqua: #00D9F7;
8
- $teal: #00A6A6;
9
- $olive: #00B562;
10
- $green: #00D942;
11
- $lime: #B4D900;
12
- $yellow: #EBCF00;
13
- $orange: #EB7700;
14
- $red: #EB0012;
15
- $maroon: #790009;
16
- $fuchsia: #FF00C3;
17
- $purple: #8D00FF;
18
- $white: #fff;
19
- $silver: #777;
20
- $gray: #333;
21
- $black: #000;
8
+ ***/
22
9
 
23
-
24
- /*
25
-
26
- SKINS
27
- - Backgrounds
28
- - Colors
29
- - Border colors
30
- - SVG fills
31
- - SVG Strokes
32
-
33
- */
34
-
35
-
36
- /* Backgrounds */
37
-
38
- .bg-navy { background-color: $navy; }
39
- .bg-blue { background-color: $blue; }
40
- .bg-aqua { background-color: $aqua; }
41
- .bg-teal { background-color: $teal; }
42
- .bg-olive { background-color: $olive; }
43
- .bg-green { background-color: $green; }
44
- .bg-lime { background-color: $lime; }
45
- .bg-yellow { background-color: $yellow; }
46
- .bg-orange { background-color: $orange; }
47
- .bg-red { background-color: $red; }
48
- .bg-fuchsia { background-color: $fuchsia; }
49
- .bg-purple { background-color: $purple; }
50
- .bg-maroon { background-color: $maroon; }
51
- .bg-white { background-color: $white; }
52
- .bg-gray { background-color: $gray; }
53
- .bg-silver { background-color: $silver; }
54
- .bg-black { background-color: $black; }
55
-
56
-
57
- /* Colors */
58
-
59
- .navy { color: $navy; }
60
- .blue { color: $blue; }
61
- .aqua { color: $aqua; }
62
- .teal { color: $teal; }
63
- .olive { color: $olive; }
64
- .green { color: $green; }
65
- .lime { color: $lime; }
66
- .yellow { color: $yellow; }
67
- .orange { color: $orange; }
68
- .red { color: $red; }
69
- .fuchsia { color: $fuchsia; }
70
- .purple { color: $purple; }
71
- .maroon { color: $maroon; }
72
- .white { color: $white; }
73
- .silver { color: $silver; }
74
- .gray { color: $gray; }
75
- .black { color: $black; }
76
-
77
-
78
- /* Border colors
79
-
80
- Use with another border utility that sets border-width and style
81
- i.e .border { border-width: 1px; border-style: solid; }
82
- */
83
-
84
- .border--navy { border-color: $navy; }
85
- .border--blue { border-color: $blue; }
86
- .border--aqua { border-color: $aqua; }
87
- .border--teal { border-color: $teal; }
88
- .border--olive { border-color: $olive; }
89
- .border--green { border-color: $green; }
90
- .border--lime { border-color: $lime; }
91
- .border--yellow { border-color: $yellow; }
92
- .border--orange { border-color: $orange; }
93
- .border--red { border-color: $red; }
94
- .border--fuchsia { border-color: $fuchsia; }
95
- .border--purple { border-color: $purple; }
96
- .border--maroon { border-color: $maroon; }
97
- .border--white { border-color: $white; }
98
- .border--gray { border-color: $gray; }
99
- .border--silver { border-color: $silver; }
100
- .border--black { border-color: $black; }
101
-
102
-
103
- /* Fills for SVG */
104
-
105
- .fill-navy { fill: $navy; }
106
- .fill-blue { fill: $blue; }
107
- .fill-aqua { fill: $aqua; }
108
- .fill-teal { fill: $teal; }
109
- .fill-olive { fill: $olive; }
110
- .fill-green { fill: $green; }
111
- .fill-lime { fill: $lime; }
112
- .fill-yellow { fill: $yellow; }
113
- .fill-orange { fill: $orange; }
114
- .fill-red { fill: $red; }
115
- .fill-fuchsia { fill: $fuchsia; }
116
- .fill-purple { fill: $purple; }
117
- .fill-maroon { fill: $maroon; }
118
- .fill-white { fill: $white; }
119
- .fill-gray { fill: $gray; }
120
- .fill-silver { fill: $silver; }
121
- .fill-black { fill: $black; }
122
-
123
- /* Strokes for SVG */
124
-
125
- .stroke-navy { stroke: $navy; }
126
- .stroke-blue { stroke: $blue; }
127
- .stroke-aqua { stroke: $aqua; }
128
- .stroke-teal { stroke: $teal; }
129
- .stroke-olive { stroke: $olive; }
130
- .stroke-green { stroke: $green; }
131
- .stroke-lime { stroke: $lime; }
132
- .stroke-yellow { stroke: $yellow; }
133
- .stroke-orange { stroke: $orange; }
134
- .stroke-red { stroke: $red; }
135
- .stroke-fuchsia { stroke: $fuchsia; }
136
- .stroke-purple { stroke: $purple; }
137
- .stroke-maroon { stroke: $maroon; }
138
- .stroke-white { stroke: $white; }
139
- .stroke-gray { stroke: $gray; }
140
- .stroke-silver { stroke: $silver; }
141
- .stroke-black { stroke: $black; }
10
+ @import "clrs-saturated/variables";
11
+ @import "clrs-saturated/skins";
@@ -0,0 +1,118 @@
1
+ /*
2
+
3
+ SKINS
4
+ - Backgrounds
5
+ - Colors
6
+ - Border colors
7
+ - SVG fills
8
+ - SVG Strokes
9
+
10
+ */
11
+
12
+
13
+ /* Backgrounds */
14
+
15
+ .bg-navy { background-color: $navy; }
16
+ .bg-blue { background-color: $blue; }
17
+ .bg-aqua { background-color: $aqua; }
18
+ .bg-teal { background-color: $teal; }
19
+ .bg-olive { background-color: $olive; }
20
+ .bg-green { background-color: $green; }
21
+ .bg-lime { background-color: $lime; }
22
+ .bg-yellow { background-color: $yellow; }
23
+ .bg-orange { background-color: $orange; }
24
+ .bg-red { background-color: $red; }
25
+ .bg-fuchsia { background-color: $fuchsia; }
26
+ .bg-purple { background-color: $purple; }
27
+ .bg-maroon { background-color: $maroon; }
28
+ .bg-white { background-color: $white; }
29
+ .bg-gray { background-color: $gray; }
30
+ .bg-silver { background-color: $silver; }
31
+ .bg-black { background-color: $black; }
32
+
33
+
34
+ /* Colors */
35
+
36
+ .navy { color: $navy; }
37
+ .blue { color: $blue; }
38
+ .aqua { color: $aqua; }
39
+ .teal { color: $teal; }
40
+ .olive { color: $olive; }
41
+ .green { color: $green; }
42
+ .lime { color: $lime; }
43
+ .yellow { color: $yellow; }
44
+ .orange { color: $orange; }
45
+ .red { color: $red; }
46
+ .fuchsia { color: $fuchsia; }
47
+ .purple { color: $purple; }
48
+ .maroon { color: $maroon; }
49
+ .white { color: $white; }
50
+ .silver { color: $silver; }
51
+ .gray { color: $gray; }
52
+ .black { color: $black; }
53
+
54
+
55
+ /* Border colors
56
+
57
+ Use with another border utility that sets border-width and style
58
+ i.e .border { border-width: 1px; border-style: solid; }
59
+ */
60
+
61
+ .border--navy { border-color: $navy; }
62
+ .border--blue { border-color: $blue; }
63
+ .border--aqua { border-color: $aqua; }
64
+ .border--teal { border-color: $teal; }
65
+ .border--olive { border-color: $olive; }
66
+ .border--green { border-color: $green; }
67
+ .border--lime { border-color: $lime; }
68
+ .border--yellow { border-color: $yellow; }
69
+ .border--orange { border-color: $orange; }
70
+ .border--red { border-color: $red; }
71
+ .border--fuchsia { border-color: $fuchsia; }
72
+ .border--purple { border-color: $purple; }
73
+ .border--maroon { border-color: $maroon; }
74
+ .border--white { border-color: $white; }
75
+ .border--gray { border-color: $gray; }
76
+ .border--silver { border-color: $silver; }
77
+ .border--black { border-color: $black; }
78
+
79
+
80
+ /* Fills for SVG */
81
+
82
+ .fill-navy { fill: $navy; }
83
+ .fill-blue { fill: $blue; }
84
+ .fill-aqua { fill: $aqua; }
85
+ .fill-teal { fill: $teal; }
86
+ .fill-olive { fill: $olive; }
87
+ .fill-green { fill: $green; }
88
+ .fill-lime { fill: $lime; }
89
+ .fill-yellow { fill: $yellow; }
90
+ .fill-orange { fill: $orange; }
91
+ .fill-red { fill: $red; }
92
+ .fill-fuchsia { fill: $fuchsia; }
93
+ .fill-purple { fill: $purple; }
94
+ .fill-maroon { fill: $maroon; }
95
+ .fill-white { fill: $white; }
96
+ .fill-gray { fill: $gray; }
97
+ .fill-silver { fill: $silver; }
98
+ .fill-black { fill: $black; }
99
+
100
+ /* Strokes for SVG */
101
+
102
+ .stroke-navy { stroke: $navy; }
103
+ .stroke-blue { stroke: $blue; }
104
+ .stroke-aqua { stroke: $aqua; }
105
+ .stroke-teal { stroke: $teal; }
106
+ .stroke-olive { stroke: $olive; }
107
+ .stroke-green { stroke: $green; }
108
+ .stroke-lime { stroke: $lime; }
109
+ .stroke-yellow { stroke: $yellow; }
110
+ .stroke-orange { stroke: $orange; }
111
+ .stroke-red { stroke: $red; }
112
+ .stroke-fuchsia { stroke: $fuchsia; }
113
+ .stroke-purple { stroke: $purple; }
114
+ .stroke-maroon { stroke: $maroon; }
115
+ .stroke-white { stroke: $white; }
116
+ .stroke-gray { stroke: $gray; }
117
+ .stroke-silver { stroke: $silver; }
118
+ .stroke-black { stroke: $black; }
@@ -0,0 +1,19 @@
1
+ // COLOR VARIABLES
2
+
3
+ $navy: #002B75;
4
+ $blue: #0050D4;
5
+ $aqua: #00D9F7;
6
+ $teal: #00A6A6;
7
+ $olive: #00B562;
8
+ $green: #00D942;
9
+ $lime: #B4D900;
10
+ $yellow: #EBCF00;
11
+ $orange: #EB7700;
12
+ $red: #EB0012;
13
+ $maroon: #790009;
14
+ $fuchsia: #FF00C3;
15
+ $purple: #8D00FF;
16
+ $white: #fff;
17
+ $silver: #777;
18
+ $gray: #333;
19
+ $black: #000;
@@ -1,166 +1,11 @@
1
- /* Courtesy of clrs.cc by @mrmrs_ */
1
+ /***
2
2
 
3
- //
4
- // COLOR VARIABLES
5
- //
6
- // - Cool
7
- // - Warm
8
- // - Gray Scale
9
- //
3
+ colors.css v2.0.0
4
+ http://clrs.cc
5
+ @mrmrs
6
+ MIT License
10
7
 
11
- // Cool
8
+ ***/
12
9
 
13
- $aqua: #7FDBFF;
14
- $blue: #0074D9;
15
- $navy: #001F3F;
16
- $teal: #39CCCC;
17
- $green: #2ECC40;
18
- $olive: #3D9970;
19
- $lime: #01FF70;
20
-
21
- // Warm
22
-
23
- $yellow: #FFDC00;
24
- $orange: #FF851B;
25
- $red: #FF4136;
26
- $fuchsia: #F012BE;
27
- $purple: #B10DC9;
28
- $maroon: #85144B;
29
-
30
- // Gray Scale
31
-
32
- $white: #fff;
33
- $silver: #ddd;
34
- $gray: #aaa;
35
- $black: #111;
36
-
37
-
38
- /*
39
-
40
- SKINS
41
- - Backgrounds
42
- - Colors
43
- - Border colors
44
- - SVG fills
45
- - SVG Strokes
46
-
47
- */
48
-
49
-
50
- /* Backgrounds */
51
-
52
- .bg-navy { background-color: $navy; }
53
- .bg-blue { background-color: $blue; }
54
- .bg-aqua { background-color: $aqua; }
55
- .bg-teal { background-color: $teal; }
56
- .bg-olive { background-color: $olive; }
57
- .bg-green { background-color: $green; }
58
- .bg-lime { background-color: $lime; }
59
- .bg-yellow { background-color: $yellow; }
60
- .bg-orange { background-color: $orange; }
61
- .bg-red { background-color: $red; }
62
- .bg-fuchsia { background-color: $fuchsia; }
63
- .bg-purple { background-color: $purple; }
64
- .bg-maroon { background-color: $maroon; }
65
- .bg-white { background-color: $white; }
66
- .bg-gray { background-color: $gray; }
67
- .bg-silver { background-color: $silver; }
68
- .bg-black { background-color: $black; }
69
-
70
-
71
- /* Colors */
72
-
73
- .navy { color: $navy; }
74
- .blue { color: $blue; }
75
- .aqua { color: $aqua; }
76
- .teal { color: $teal; }
77
- .olive { color: $olive; }
78
- .green { color: $green; }
79
- .lime { color: $lime; }
80
- .yellow { color: $yellow; }
81
- .orange { color: $orange; }
82
- .red { color: $red; }
83
- .fuchsia { color: $fuchsia; }
84
- .purple { color: $purple; }
85
- .maroon { color: $maroon; }
86
- .white { color: $white; }
87
- .silver { color: $silver; }
88
- .gray { color: $gray; }
89
- .black { color: $black; }
90
-
91
-
92
- /* Border colors
93
-
94
- Use with another border utility that sets border-width and style
95
- i.e .border { border-width: 1px; border-style: solid; }
96
- */
97
-
98
- .border--navy { border-color: $navy; }
99
- .border--blue { border-color: $blue; }
100
- .border--aqua { border-color: $aqua; }
101
- .border--teal { border-color: $teal; }
102
- .border--olive { border-color: $olive; }
103
- .border--green { border-color: $green; }
104
- .border--lime { border-color: $lime; }
105
- .border--yellow { border-color: $yellow; }
106
- .border--orange { border-color: $orange; }
107
- .border--red { border-color: $red; }
108
- .border--fuchsia { border-color: $fuchsia; }
109
- .border--purple { border-color: $purple; }
110
- .border--maroon { border-color: $maroon; }
111
- .border--white { border-color: $white; }
112
- .border--gray { border-color: $gray; }
113
- .border--silver { border-color: $silver; }
114
- .border--black { border-color: $black; }
115
-
116
-
117
- /* Fills for SVG */
118
-
119
- .fill-navy { fill: $navy; }
120
- .fill-blue { fill: $blue; }
121
- .fill-aqua { fill: $aqua; }
122
- .fill-teal { fill: $teal; }
123
- .fill-olive { fill: $olive; }
124
- .fill-green { fill: $green; }
125
- .fill-lime { fill: $lime; }
126
- .fill-yellow { fill: $yellow; }
127
- .fill-orange { fill: $orange; }
128
- .fill-red { fill: $red; }
129
- .fill-fuchsia { fill: $fuchsia; }
130
- .fill-purple { fill: $purple; }
131
- .fill-maroon { fill: $maroon; }
132
- .fill-white { fill: $white; }
133
- .fill-gray { fill: $gray; }
134
- .fill-silver { fill: $silver; }
135
- .fill-black { fill: $black; }
136
-
137
- /* Strokes for SVG */
138
-
139
- .stroke-navy { stroke: $navy; }
140
- .stroke-blue { stroke: $blue; }
141
- .stroke-aqua { stroke: $aqua; }
142
- .stroke-teal { stroke: $teal; }
143
- .stroke-olive { stroke: $olive; }
144
- .stroke-green { stroke: $green; }
145
- .stroke-lime { stroke: $lime; }
146
- .stroke-yellow { stroke: $yellow; }
147
- .stroke-orange { stroke: $orange; }
148
- .stroke-red { stroke: $red; }
149
- .stroke-fuchsia { stroke: $fuchsia; }
150
- .stroke-purple { stroke: $purple; }
151
- .stroke-maroon { stroke: $maroon; }
152
- .stroke-white { stroke: $white; }
153
- .stroke-gray { stroke: $gray; }
154
- .stroke-silver { stroke: $silver; }
155
- .stroke-black { stroke: $black; }
156
-
157
- /* Prettier Links */
158
-
159
- a {
160
- transition: color .3s ease-in-out;
161
- }
162
-
163
- a:link { color: $blue; }
164
- a:visited { color: $purple; }
165
- a:hover { color: $aqua; }
166
- a:active { color: $orange; }
10
+ @import "clrs/variables";
11
+ @import "clrs/skins";
@@ -0,0 +1,118 @@
1
+ /*
2
+
3
+ SKINS
4
+ - Backgrounds
5
+ - Colors
6
+ - Border colors
7
+ - SVG fills
8
+ - SVG Strokes
9
+
10
+ */
11
+
12
+
13
+ /* Backgrounds */
14
+
15
+ .bg-navy { background-color: $navy; }
16
+ .bg-blue { background-color: $blue; }
17
+ .bg-aqua { background-color: $aqua; }
18
+ .bg-teal { background-color: $teal; }
19
+ .bg-olive { background-color: $olive; }
20
+ .bg-green { background-color: $green; }
21
+ .bg-lime { background-color: $lime; }
22
+ .bg-yellow { background-color: $yellow; }
23
+ .bg-orange { background-color: $orange; }
24
+ .bg-red { background-color: $red; }
25
+ .bg-fuchsia { background-color: $fuchsia; }
26
+ .bg-purple { background-color: $purple; }
27
+ .bg-maroon { background-color: $maroon; }
28
+ .bg-white { background-color: $white; }
29
+ .bg-gray { background-color: $gray; }
30
+ .bg-silver { background-color: $silver; }
31
+ .bg-black { background-color: $black; }
32
+
33
+
34
+ /* Colors */
35
+
36
+ .navy { color: $navy; }
37
+ .blue { color: $blue; }
38
+ .aqua { color: $aqua; }
39
+ .teal { color: $teal; }
40
+ .olive { color: $olive; }
41
+ .green { color: $green; }
42
+ .lime { color: $lime; }
43
+ .yellow { color: $yellow; }
44
+ .orange { color: $orange; }
45
+ .red { color: $red; }
46
+ .fuchsia { color: $fuchsia; }
47
+ .purple { color: $purple; }
48
+ .maroon { color: $maroon; }
49
+ .white { color: $white; }
50
+ .silver { color: $silver; }
51
+ .gray { color: $gray; }
52
+ .black { color: $black; }
53
+
54
+
55
+ /* Border colors
56
+
57
+ Use with another border utility that sets border-width and style
58
+ i.e .border { border-width: 1px; border-style: solid; }
59
+ */
60
+
61
+ .border--navy { border-color: $navy; }
62
+ .border--blue { border-color: $blue; }
63
+ .border--aqua { border-color: $aqua; }
64
+ .border--teal { border-color: $teal; }
65
+ .border--olive { border-color: $olive; }
66
+ .border--green { border-color: $green; }
67
+ .border--lime { border-color: $lime; }
68
+ .border--yellow { border-color: $yellow; }
69
+ .border--orange { border-color: $orange; }
70
+ .border--red { border-color: $red; }
71
+ .border--fuchsia { border-color: $fuchsia; }
72
+ .border--purple { border-color: $purple; }
73
+ .border--maroon { border-color: $maroon; }
74
+ .border--white { border-color: $white; }
75
+ .border--gray { border-color: $gray; }
76
+ .border--silver { border-color: $silver; }
77
+ .border--black { border-color: $black; }
78
+
79
+
80
+ /* Fills for SVG */
81
+
82
+ .fill-navy { fill: $navy; }
83
+ .fill-blue { fill: $blue; }
84
+ .fill-aqua { fill: $aqua; }
85
+ .fill-teal { fill: $teal; }
86
+ .fill-olive { fill: $olive; }
87
+ .fill-green { fill: $green; }
88
+ .fill-lime { fill: $lime; }
89
+ .fill-yellow { fill: $yellow; }
90
+ .fill-orange { fill: $orange; }
91
+ .fill-red { fill: $red; }
92
+ .fill-fuchsia { fill: $fuchsia; }
93
+ .fill-purple { fill: $purple; }
94
+ .fill-maroon { fill: $maroon; }
95
+ .fill-white { fill: $white; }
96
+ .fill-gray { fill: $gray; }
97
+ .fill-silver { fill: $silver; }
98
+ .fill-black { fill: $black; }
99
+
100
+ /* Strokes for SVG */
101
+
102
+ .stroke-navy { stroke: $navy; }
103
+ .stroke-blue { stroke: $blue; }
104
+ .stroke-aqua { stroke: $aqua; }
105
+ .stroke-teal { stroke: $teal; }
106
+ .stroke-olive { stroke: $olive; }
107
+ .stroke-green { stroke: $green; }
108
+ .stroke-lime { stroke: $lime; }
109
+ .stroke-yellow { stroke: $yellow; }
110
+ .stroke-orange { stroke: $orange; }
111
+ .stroke-red { stroke: $red; }
112
+ .stroke-fuchsia { stroke: $fuchsia; }
113
+ .stroke-purple { stroke: $purple; }
114
+ .stroke-maroon { stroke: $maroon; }
115
+ .stroke-white { stroke: $white; }
116
+ .stroke-gray { stroke: $gray; }
117
+ .stroke-silver { stroke: $silver; }
118
+ .stroke-black { stroke: $black; }
@@ -0,0 +1,33 @@
1
+ //
2
+ // COLOR VARIABLES
3
+ //
4
+ // - Cool
5
+ // - Warm
6
+ // - Gray Scale
7
+ //
8
+
9
+ // Cool
10
+
11
+ $aqua: #7FDBFF;
12
+ $blue: #0074D9;
13
+ $navy: #001F3F;
14
+ $teal: #39CCCC;
15
+ $green: #2ECC40;
16
+ $olive: #3D9970;
17
+ $lime: #01FF70;
18
+
19
+ // Warm
20
+
21
+ $yellow: #FFDC00;
22
+ $orange: #FF851B;
23
+ $red: #FF4136;
24
+ $fuchsia: #F012BE;
25
+ $purple: #B10DC9;
26
+ $maroon: #85144B;
27
+
28
+ // Gray Scale
29
+
30
+ $white: #fff;
31
+ $silver: #ddd;
32
+ $gray: #aaa;
33
+ $black: #111;
Binary file
@@ -2,5 +2,4 @@ require "clrs/version"
2
2
  require "clrs/engine"
3
3
 
4
4
  module Clrs
5
- # Your code goes here...
6
5
  end
@@ -1,3 +1,3 @@
1
1
  module Clrs
2
- VERSION = "1.2.0"
2
+ VERSION = "2.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clrs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Otander
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-17 00:00:00.000000000 Z
11
+ date: 2014-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -51,10 +51,15 @@ files:
51
51
  - README.md
52
52
  - Rakefile
53
53
  - app/assets/stylesheets/clrs-saturated.scss
54
+ - app/assets/stylesheets/clrs-saturated/_skins.scss
55
+ - app/assets/stylesheets/clrs-saturated/_variables.scss
54
56
  - app/assets/stylesheets/clrs.scss
57
+ - app/assets/stylesheets/clrs/_skins.scss
58
+ - app/assets/stylesheets/clrs/_variables.scss
55
59
  - clrs-0.0.2.gem
56
60
  - clrs-1.0.0.gem
57
61
  - clrs-1.1.0.gem
62
+ - clrs-1.2.0.gem
58
63
  - clrs.gemspec
59
64
  - lib/clrs.rb
60
65
  - lib/clrs/engine.rb