shipyard-framework 0.2.6 → 0.2.7

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: a9421461565d72843568de21d9609aea0f5b25e3
4
- data.tar.gz: 53011234eb63e6e6d276c8de938ea58eb6f12639
3
+ metadata.gz: 7c66e1da05cdb58a2929334fb2aeb4a9bfcddb92
4
+ data.tar.gz: 0168d3676a02258f038c28641ad96ce040dbe382
5
5
  SHA512:
6
- metadata.gz: 0eca284bfbf0f19cc0567b1bc8267a6ba5db389048f8c44f5bb1eaaeb8726b24c9caa3a455a198a73c9ea54d9d62d065889ae7e6bd643007e080d6455744e7b8
7
- data.tar.gz: 18c71a98fc69bca2cf6792f82e757c80e97a48e70ef0cf363e5c25cf8b5f2b609a2fd223e7b0a33114760ff65cb8fd958cd606bd88cdc9399aed58da7cdc5202
6
+ metadata.gz: 08b4ddade9a619d0eda88c03be756daea1a4d843a7928469711b889bd4252ece8cd08a5126e0ba521c849b6b70bae40b0ac19431b2fc80e551436f77a62b091a
7
+ data.tar.gz: bad513f9e0186aa7415b978bb9f8f74c2a5a6d2a92734c95391b3c6abaf742e9e7d236033c9dcd00ba02348a7cc293d4760c02ed4f33f72939dab77ceade1d0b
@@ -3,8 +3,8 @@
3
3
  $color: map-get($colors, $name)
4
4
  @if $color
5
5
  @if $shade
6
- @return map-get(map-get($colors, $name), $shade)
6
+ @return map-get($color, $shade)
7
7
  @else
8
- @return map-get(map-get($colors, $name), base)
8
+ @return map-get($color, base)
9
9
  @else
10
- @warn "Sorry, but the color `#{$name}` hasn't been defined in the $colors variable."
10
+ @error "Sorry, but the color `#{$name}` hasn't been defined in the $colors variable."
@@ -1,68 +1,68 @@
1
1
  // Gray
2
- $gray: color(gray) !default
3
- $gray-light: color(gray, light) !default
4
- $gray-lighter: color(gray, lighter) !default
5
- $gray-lightest: color(gray, lightest) !default
6
- $gray-dark: color(gray, dark) !default
7
- $gray-darkest: color(gray, darkest) !default
2
+ $gray: color('gray') !default
3
+ $gray-light: color('gray', light) !default
4
+ $gray-lighter: color('gray', lighter) !default
5
+ $gray-lightest: color('gray', lightest) !default
6
+ $gray-dark: color('gray', dark) !default
7
+ $gray-darkest: color('gray', darkest) !default
8
8
 
9
9
  // Green
10
- $green: color(green) !default
11
- $green-light: color(green, light) !default
12
- $green-lightest: color(green, lightest) !default
13
- $green-dark: color(green, dark) !default
14
- $green-darkest: color(green, darkest) !default
10
+ $green: color('green') !default
11
+ $green-light: color('green', light) !default
12
+ $green-lightest: color('green', lightest) !default
13
+ $green-dark: color('green', dark) !default
14
+ $green-darkest: color('green', darkest) !default
15
15
 
16
16
  // Blue
17
- $blue: color(blue) !default
18
- $blue-light: color(blue, light) !default
19
- $blue-lightest: color(blue, lightest) !default
20
- $blue-dark: color(blue, dark) !default
21
- $blue-darkest: color(blue, darkest) !default
17
+ $blue: color('blue') !default
18
+ $blue-light: color('blue', light) !default
19
+ $blue-lightest: color('blue', lightest) !default
20
+ $blue-dark: color('blue', dark) !default
21
+ $blue-darkest: color('blue', darkest) !default
22
22
 
23
23
  // Teal
24
- $teal: color(teal) !default
25
- $teal-light: color(teal, light) !default
26
- $teal-lightest: color(teal, lightest) !default
27
- $teal-dark: color(teal, dark) !default
28
- $teal-darkest: color(teal, darkest) !default
24
+ $teal: color('teal') !default
25
+ $teal-light: color('teal', light) !default
26
+ $teal-lightest: color('teal', lightest) !default
27
+ $teal-dark: color('teal', dark) !default
28
+ $teal-darkest: color('teal', darkest) !default
29
29
 
30
30
  // Red
31
- $red: color(red) !default
32
- $red-light: color(red, light) !default
33
- $red-lightest: color(red, lightest) !default
34
- $red-dark: color(red, dark) !default
35
- $red-darkest: color(red, darkest) !default
31
+ $red: color('red') !default
32
+ $red-light: color('red', light) !default
33
+ $red-lightest: color('red', lightest) !default
34
+ $red-dark: color('red', dark) !default
35
+ $red-darkest: color('red', darkest) !default
36
36
 
37
37
  // Yellow
38
- $yellow: color(yellow) !default
39
- $yellow-light: color(yellow, light) !default
40
- $yellow-lightest: color(yellow, lightest) !default
41
- $yellow-dark: color(yellow, dark) !default
42
- $yellow-darker: color(yellow, darker) !default
43
- $yellow-darkest: color(yellow, darkest) !default
38
+ $yellow: color('yellow') !default
39
+ $yellow-light: color('yellow', light) !default
40
+ $yellow-lightest: color('yellow', lightest) !default
41
+ $yellow-dark: color('yellow', dark) !default
42
+ $yellow-darker: color('yellow', darker) !default
43
+ $yellow-darkest: color('yellow', darkest) !default
44
44
 
45
45
  // Orange
46
- $orange: color(orange) !default
47
- $orange-light: color(orange, light) !default
48
- $orange-lightest: color(orange, lightest) !default
49
- $orange-dark: color(orange, dark) !default
50
- $orange-darkest: color(orange, darkest) !default
46
+ $orange: color('orange') !default
47
+ $orange-light: color('orange', light) !default
48
+ $orange-lightest: color('orange', lightest) !default
49
+ $orange-dark: color('orange', dark) !default
50
+ $orange-darkest: color('orange', darkest) !default
51
51
 
52
52
  // Coral
53
- $coral: color(coral) !default
54
- $coral-light: color(coral, light) !default
55
- $coral-lighter: color(coral, lighter) !default
56
- $coral-lightest: color(coral, lightest) !default
57
- $coral-dark: color(coral, dark) !default
58
- $coral-darker: color(coral, darker) !default
59
- $coral-darkest: color(coral, darkest) !default
53
+ $coral: color('coral') !default
54
+ $coral-light: color('coral', light) !default
55
+ $coral-lighter: color('coral', lighter) !default
56
+ $coral-lightest: color('coral', lightest) !default
57
+ $coral-dark: color('coral', dark) !default
58
+ $coral-darker: color('coral', darker) !default
59
+ $coral-darkest: color('coral', darkest) !default
60
60
 
61
61
  // Purple
62
- $purple: color(purple) !default
63
- $purple-light: color(purple, light) !default
64
- $purple-lighter: color(purple, lighter) !default
65
- $purple-lightest: color(purple, lightest) !default
66
- $purple-dark: color(purple, dark) !default
67
- $purple-darker: color(purple, darker) !default
68
- $purple-darkest: color(purple, darkest) !default
62
+ $purple: color('purple') !default
63
+ $purple-light: color('purple', light) !default
64
+ $purple-lighter: color('purple', lighter) !default
65
+ $purple-lightest: color('purple', lightest) !default
66
+ $purple-dark: color('purple', dark) !default
67
+ $purple-darker: color('purple', darker) !default
68
+ $purple-darkest: color('purple', darkest) !default
@@ -1,11 +1,11 @@
1
1
  $colors: (
2
- gray: (base: #788594, light: #bac5d2, lighter: #dfe6eb, lightest: #f2f5f7, dark: #313a44, darkest: #1e252c),
3
- green: (base: #3acc7c, light: #97ffc6, lightest: #b5ffd6, dark: #2c995d, darkest: #1d663e),
4
- blue: (base: #1ca1e3, light: #5eb9e6, lightest: #9ed8f5, dark: #0075b0, darkest: #004d73),
5
- teal: (base: #20a5a8, light: #6ab7b9, lightest: #b2dbdc, dark: #0e6e70, darkest: #00494b),
6
- red: (base: #e06158, light: #f7a09e, lightest: #ffc6cb, dark: #b13b39, darkest: #892120),
7
- yellow: (base: #ffca49, light: #ffd87e, lightest: #ffe7b1, dark: #99782d, darker: #66501e, darkest: #33280f),
8
- orange: (base: #ff9f49, light: #ffba7d, lightest: #ffd6b1, dark: #cc7f3a, darkest: #995f2c),
9
- purple: (base: #bf84ff, light: lighten(#bf84ff, 10%), lighter: lighten(#bf84ff, 15%), lightest: lighten(#bf84ff, 20%), dark: darken(#bf84ff, 10%), darker: darken(#bf84ff, 15%), darkest: darken(#bf84ff, 20%)),
10
- coral: (base: #f9657a, light: lighten(#f9657a, 10%), lighter: lighten(#f9657a, 15%), lightest: lighten(#f9657a, 20%), dark: darken(#f9657a, 10%), darker: darken(#f9657a, 15%), darkest: darken(#f9657a, 20%))
2
+ "gray": (base: #788594, light: #bac5d2, lighter: #dfe6eb, lightest: #f2f5f7, dark: #313a44, darkest: #1e252c),
3
+ "green": (base: #3acc7c, light: #97ffc6, lightest: #b5ffd6, dark: #2c995d, darkest: #1d663e),
4
+ "blue": (base: #1ca1e3, light: #5eb9e6, lightest: #9ed8f5, dark: #0075b0, darkest: #004d73),
5
+ "teal": (base: #20a5a8, light: #6ab7b9, lightest: #b2dbdc, dark: #0e6e70, darkest: #00494b),
6
+ "red": (base: #e06158, light: #f7a09e, lightest: #ffc6cb, dark: #b13b39, darkest: #892120),
7
+ "yellow": (base: #ffca49, light: #ffd87e, lightest: #ffe7b1, dark: #99782d, darker: #66501e, darkest: #33280f),
8
+ "orange": (base: #ff9f49, light: #ffba7d, lightest: #ffd6b1, dark: #cc7f3a, darkest: #995f2c),
9
+ "purple": (base: #bf84ff, light: lighten(#bf84ff, 10%), lighter: lighten(#bf84ff, 15%), lightest: lighten(#bf84ff, 20%), dark: darken(#bf84ff, 10%), darker: darken(#bf84ff, 15%), darkest: darken(#bf84ff, 20%)),
10
+ "coral": (base: #f9657a, light: lighten(#f9657a, 10%), lighter: lighten(#f9657a, 15%), lightest: lighten(#f9657a, 20%), dark: darken(#f9657a, 10%), darker: darken(#f9657a, 15%), darkest: darken(#f9657a, 20%))
11
11
  ) !default;
@@ -1,3 +1,3 @@
1
1
  module Shipyard
2
- VERSION = '0.2.6'
2
+ VERSION = '0.2.7'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipyard-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shipyard