css - Colors from RGB values in JavaScript array - Stack Overflow

What is the preferred way to create colors with JavaScript from RGB colors so that they can then be use

What is the preferred way to create colors with JavaScript from RGB colors so that they can then be used to style elements as in the form of CSS colors like the following.

document.getElementById("some_id").style.color = "some_value"

Example below:

const colorsCbfRainbowRGB = {
  violet: [120,28,129],
  indigo: [64,67,153],
  blue: [72,139,194],
  green: [107,178,140],
  olive: [159,190,87],
  yellow: [210,179,63],
  orange: [231,126,49],
  red: [217,33,32]
}

What is the preferred way to create colors with JavaScript from RGB colors so that they can then be used to style elements as in the form of CSS colors like the following.

document.getElementById("some_id").style.color = "some_value"

Example below:

const colorsCbfRainbowRGB = {
  violet: [120,28,129],
  indigo: [64,67,153],
  blue: [72,139,194],
  green: [107,178,140],
  olive: [159,190,87],
  yellow: [210,179,63],
  orange: [231,126,49],
  red: [217,33,32]
}
Share Improve this question edited Dec 28, 2016 at 3:25 Alexander O'Mara 60.6k19 gold badges172 silver badges181 bronze badges asked Dec 24, 2016 at 6:17 user3206440user3206440 5,06916 gold badges84 silver badges138 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 5

You can convert to rgb(r, g, b) CSS colors very easily.

function rgb(values) {
    return 'rgb(' + values.join(', ') + ')';
}
console.log(rgb(colorsCbfRainbowRGB.violet));

This is supported by any browser worth mentioning, and simpiler than converting to hexadecimal.

You could use a string template with rgb() and RGB numbers.

function setColor(color) {
    const colorsCbfRainbowRGB = { violet: [120, 28, 129], indigo: [64, 67, 153], blue: [72, 139, 194], green: [107, 178, 140], olive: [159, 190, 87], yellow: [210, 179, 63], orange: [231, 126, 49], red: [217, 33, 32] };
    document.getElementById("out").style.color = `rgb(${colorsCbfRainbowRGB[color]})`;
}

setColor('orange');
<div id="out">foo bar baz</div>

Create random color(it's not only RGB colors)

function getRandomColor() {
    var letters = '0123456789ABCDEF';
    var color = '#';
      for (var i = 0; i < 6; i++ ) {
          color += letters[Math.floor(Math.random() * 16)];
      }
    return color;
}

Hope this Helps!!!

Use the hex rappresentation of a color: #rrggbb

Where rr is the amount of red from 00 to FF, gg the green and bb the blue.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743644929a4483593.html

相关推荐

  • css - Colors from RGB values in JavaScript array - Stack Overflow

    What is the preferred way to create colors with JavaScript from RGB colors so that they can then be use

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信