生成柔和的色彩

时间:2010-12-09 14:09:29

标签: ruby colors

我需要生成随机颜色。但我需要柔和的。不太暗,不太亮。

我可以这样生成颜色:

color = (1..3).to_a.map{ ( c = rand(255).to_s(16) ).size < 2 ? "0#{c}" : c }.to_s

但它将从所有调色板返回颜色。

2 个答案:

答案 0 :(得分:2)

试试这个:

start_color = 128 # minimal color amount
total_offset = 64 # sum of individual color offsets above the minimal amount
'#' +
  [0, rand(total_offset), rand(total_offset), total_offset].sort.each_cons(2).map{|a,b|
    "%02x" % (start_color+b-a)
  }.join

实际上,这是你可以玩的小型Sinatra应用程序并立即查看结果:

require 'sinatra'

def get_pastel start_color, total_offset
  '#' +
    [0, rand(total_offset), rand(total_offset), total_offset].sort.each_cons(2).map{|a,b|
      "%02x" % (start_color+b-a)
    }.join
end

get '/:start_color/:total_offset' do |start_color, total_offset|
  (0..20).map{c = get_pastel(start_color.to_i, total_offset.to_i)
    "<span style='background-color:#{c}'>#{c}</span>\n"
  }.join
end

然后启动浏览器并查看其外观:

http://localhost:4567/192/64

http://localhost:4567/128/128

答案 1 :(得分:1)

这可能会给你一些有用的东西:

colour_range = 128
colour_brightness = 64
color = (1..3).to_a.map{ ( c = rand(colour_range)+colour_brightness.to_s(16) ).size < 2 ? "0#{c}" : c }.to_s

我认为它会将你限制在中等饱和度,中等亮度的颜色。