immosquare-colors 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: 3cbf0b379ceb6c02f6fc3bbb88af75d8126dd4ec39e5fc914ae8f3190ddc13fe
4
- data.tar.gz: 80f30f8b836f980bd51507fac5f36c0827a58573b203763fb529cc39c4cd83ef
3
+ metadata.gz: 731aff145269af33588fd72b5abef8720b45cb260de44d9083a4f8c1417b86de
4
+ data.tar.gz: 35a426a289463a8c93d326c548217107e9e1932dc068be64d50d35bc8135e548
5
5
  SHA512:
6
- metadata.gz: 3b7c2adde7ce4e8ab02fc2f16d68c8e12a05d083ca86e69f053df67b8f307eb3d3259e9f6b885b2965100001609cccbc3dbce55e3ed1f309b35a3cf18d719b0d
7
- data.tar.gz: e29b267546d7626db55ec38c7a638ff86d56c6e729e736627762472aa2ee32dcf326294ed7581240323fa5a99fe6282b92fd8b235f5141b38d4d812b5ace78e3
6
+ metadata.gz: 71b29cc00937ae63c5b228c65e0e1461ee3f784c545b6f2b326b792f897584ba2e54d04076949fdcc457ac6e8bec388deefa2532c13f5febba1302f45e23ea15
7
+ data.tar.gz: 2d25bf197fbf33ef50b67f5ebddf84e7c6a5a2fa036478fd7b26d7db52d1b7843dd6d2e6847c1fcc3e045f39481a3a9538804ed580fbab0ced0258a833c9efe3
@@ -1,3 +1,3 @@
1
1
  module ImmosquareColors
2
- VERSION = "0.1.4".freeze
2
+ VERSION = "0.1.5".freeze
3
3
  end
@@ -70,9 +70,9 @@ module ImmosquareColors
70
70
  def tint_color(color, weight)
71
71
  color_hex = color.start_with?("#") ? color : color_name_to_hex(color)
72
72
  r, g, b, a = hex_to_rgba(color_hex)
73
- tinted_r = ((((100 - weight) * r) + (weight * 255)) / 100).round
74
- tinted_g = ((((100 - weight) * g) + (weight * 255)) / 100).round
75
- tinted_b = ((((100 - weight) * b) + (weight * 255)) / 100).round
73
+ tinted_r = (((1 - weight) * r) + (weight * 255)).round
74
+ tinted_g = (((1 - weight) * g) + (weight * 255)).round
75
+ tinted_b = (((1 - weight) * b) + (weight * 255)).round
76
76
  rgba_to_hex([tinted_r, tinted_g, tinted_b, a])
77
77
  end
78
78
 
@@ -82,9 +82,9 @@ module ImmosquareColors
82
82
  def shade_color(color, weight)
83
83
  color_hex = color.start_with?("#") ? color : color_name_to_hex(color)
84
84
  r, g, b, a = hex_to_rgba(color_hex)
85
- shaded_r = ((r * (100 - weight)).round / 100)
86
- shaded_g = ((g * (100 - weight)).round / 100)
87
- shaded_b = ((b * (100 - weight)).round / 100)
85
+ shaded_r = (r * (1 - weight)).round
86
+ shaded_g = (g * (1 - weight)).round
87
+ shaded_b = (b * (1 - weight)).round
88
88
  rgba_to_hex([shaded_r, shaded_g, shaded_b, a])
89
89
  end
90
90
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: immosquare-colors
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - IMMO SQUARE
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: immosquare-constants