fjord/main.rb

10 lines
123 B
Ruby
Raw Normal View History

2024-03-19 22:26:33 +09:00
def to_ints(hex)
r = hex [1..2]
g = hex [3..4]
b = hex [5..6]
ints = []
[r, g, b].map do |s|
s.hex
2024-03-16 22:40:05 +09:00
end
end