active_frontend 12.4.13 → 12.4.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 27ffde376591b5bf3fd8b87200803b7ba32fc182
4
- data.tar.gz: 02ec7f066338d2ab4a432bddf1abea46ab98e2e9
3
+ metadata.gz: 19ce504a37dbe57885cb0480fc2972aa45a365bd
4
+ data.tar.gz: 4f7ac5286ca962205524f36f7da3cd1763a25918
5
5
  SHA512:
6
- metadata.gz: 4f0658e20d573e7f2aee569ff3622f11334cc124ad3780d51e611c319bf87c1f510ad40890df3804f99ad853823515ba66076bc29c045f15a3e94b758d943dd0
7
- data.tar.gz: 2d53fefe291339a0a1a2ceadf01c132a656f566bdd4ed6d350dd40106420b50e23db4b53ede37f41318094b1de5a6d91dd7e8e5ecacfcc53500308077fd4205b
6
+ metadata.gz: 733b5abe9e0d730aba97cf71a7c5a59fc243a8219f2d44ce7e201bad09c72ef1e6e955a823d5b8134825fdf2470172381292c3ec73fddfed25f3ff0f2e366908
7
+ data.tar.gz: b47a9557a83dc2f3952927197b4ecc69fa89501e98e3c6c183e9cd5e9d6744ef8069b402da443f5a777b6c6d00fe11b700b89c2cb766ac5645c1212b8b0d6583
@@ -0,0 +1,44 @@
1
+ module ActiveFrontendHelper
2
+
3
+ def colors(opacity=1)
4
+ {
5
+ dark_black: { rgba: "rgba(36,40,46,#{opacity})", hex: "#24282E" },
6
+ black: { rgba: "rgba(50,56,64,#{opacity})", hex: "#323840" },
7
+ light_black: { rgba: "rgba(72,80,91,#{opacity})", hex: "#48505B" },
8
+ dark_black_alt_1: { rgba: "rgba(24,27,37,#{opacity})", hex: "#181B25" },
9
+ black_alt_1: { rgba: "rgba(36,41,56,#{opacity})", hex: "#242938" },
10
+ light_black_alt_1: { rgba: "rgba(48,54,75,#{opacity})", hex: "#30364B" },
11
+ dark_black_alt_2: { rgba: "rgba(24,19,32,#{opacity})", hex: "#181320" },
12
+ black_alt_2: { rgba: "rgba(42,34,55,#{opacity})", hex: "#2A2237" },
13
+ light_black_alt_2: { rgba: "rgba(59,48,77,#{opacity})", hex: "#3B304D" },
14
+ dark_gray: { rgba: "rgba(99,111,126,#{opacity})", hex: "#636F7E" },
15
+ gray: { rgba: "rgba(126,137,150,#{opacity})", hex: "#7E8996" },
16
+ light_gray: { rgba: "rgba(152,162,174,#{opacity})", hex: "#98A2AE" },
17
+ dark_haze: { rgba: "rgba(224,226,228,#{opacity})", hex: "#E0E2E4" },
18
+ haze: { rgba: "rgba(235,237,239,#{opacity})", hex: "#EBEDEF" },
19
+ light_haze: { rgba: "rgba(245,247,249,#{opacity})", hex: "#F5F7F9" },
20
+ white: { rgba: "rgba(255,255,255,#{opacity})", hex: "#FFFFFF" },
21
+ lime: { rgba: "rgba(151,212,19,#{opacity})", hex: "#97D413" },
22
+ green: { rgba: "rgba(75,173,8,#{opacity})", hex: "#4BAD08" },
23
+ teal: { rgba: "rgba(69,195,196,#{opacity})", hex: "#45C3C4" },
24
+ blue: { rgba: "rgba(0,102,255,#{opacity})", hex: "#0066FF" },
25
+ indigo: { rgba: "rgba(86,21,237,#{opacity})", hex: "#5615ED" },
26
+ purple: { rgba: "rgba(124,39,243,#{opacity})", hex: "#7C27F3" },
27
+ pink: { rgba: "rgba(255,0,102,#{opacity})", hex: "#FF0066" },
28
+ red: { rgba: "rgba(240,35,17,#{opacity})", hex: "#F02311" },
29
+ orange: { rgba: "rgba(248,122,9,#{opacity})", hex: "#F87A09" },
30
+ yellow: { rgba: "rgba(255,209,0,#{opacity})", hex: "#FFD100" },
31
+ lime_alt: { rgba: "rgba(181,228,78,#{opacity})", hex: "#B5E44E" },
32
+ green_alt: { rgba: "rgba(139,200,65,#{opacity})", hex: "#64C21C" },
33
+ teal_alt: { rgba: "rgba(120,206,205,#{opacity})", hex: "#78CECD" },
34
+ blue_alt: { rgba: "rgba(0,153,255,#{opacity})", hex: "#0099FF" },
35
+ indigo_alt: { rgba: "rgba(94,94,237,#{opacity})", hex: "#5E5EED" },
36
+ purple_alt: { rgba: "rgba(140,75,251,#{opacity})", hex: "#8C4BFB" },
37
+ pink_alt: { rgba: "rgba(255,64,127,#{opacity})", hex: "#FF407F" },
38
+ red_alt: { rgba: "rgba(255,72,71,#{opacity})", hex: "#FF4847" },
39
+ orange_alt: { rgba: "rgba(254,152,72,#{opacity})", hex: "#FE9848" },
40
+ yellow_alt: { rgba: "rgba(252,232,73,#{opacity})", hex: "#FCE849" }
41
+ }
42
+ end
43
+
44
+ end
@@ -1,3 +1,3 @@
1
1
  module ActiveFrontend
2
- VERSION = "12.4.13"
2
+ VERSION = "12.4.14"
3
3
  end
@@ -165,7 +165,7 @@
165
165
  // Array - A list of colors to use as the defaults
166
166
  segmentColorDefault: [
167
167
  "rgba(151,212,19,1)",
168
- "rgba(75,173,8,1)",
168
+ "rgba(100,194,28,1)",
169
169
  "rgba(69,195,196,1)",
170
170
  "rgba(0,102,255,1)",
171
171
  "rgba(86,21,237,1)",
@@ -181,7 +181,7 @@
181
181
  // Array - A list of highlight colors to use as the defaults
182
182
  segmentHighlightColorDefaults: [
183
183
  "rgba(151,212,19,0.1)",
184
- "rgba(75,173,8,0.1)",
184
+ "rgba(100,194,28,0.1)",
185
185
  "rgba(69,195,196,0.1)",
186
186
  "rgba(0,102,255,0.1)",
187
187
  "rgba(86,21,237,0.1)",
@@ -22,7 +22,7 @@ $color-white: rgba(255,255,255,1);
22
22
  /* # Base Colors
23
23
  ================================================== */
24
24
  $color-lime: rgba(151,212,19,1);
25
- $color-green: rgba(75,173,8,1);
25
+ $color-green: rgba(100,194,28,1);
26
26
  $color-teal: rgba(69,195,196,1);
27
27
  $color-blue: rgba(0,102,255,1);
28
28
  $color-indigo: rgba(86,21,237,1);
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.4.13
4
+ version: 12.4.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-02-18 00:00:00.000000000 Z
11
+ date: 2016-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -127,6 +127,7 @@ files:
127
127
  - app/assets/images/placeholders/camera.png
128
128
  - app/assets/images/placeholders/person.png
129
129
  - app/assets/images/placeholders/picture.png
130
+ - app/helpers/active_frontend_helper.rb
130
131
  - lib/active_frontend.rb
131
132
  - lib/active_frontend/version.rb
132
133
  - lib/generators/active_frontend/install_generator.rb