question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

the color is error?

See original GitHub issue
 public int Value
 {
        get { return Red + (Blue << 8 ) + (Green << 16); } // R G B   ?
 }

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
jokedstcommented, Jan 12, 2018

Yes, blue and green seems switched. Also, the first constructor should probably be

public Colour(int rgb)
{
    Red = rgb & 0xFF;
    Green = (rgb >> 8) & 0xFF;
    Blue = (rgb >> 16) & 0xFF;
}
0reactions
kbilstedcommented, Jan 20, 2018

fixed

Read more comments on GitHub >

github_iconTop Results From Across the Web

Reading Error Color Palette
Reading Error color palette created by telzey that consists #7676a7,#2f2d2d,#ff3333,#eaeaea,#ffffff colors.
Read more >
Error color | Internet dictionary
Error color indicates errors in components, such as invalid text in a text field. The baseline error color is #B00020. Download our trends...
Read more >
What is the most 'friendly' red hexadecimal color value for ...
Originally Answered: What is the most "friendly" red hexidecimal color value for error messages? #FF0000 is the standard red hex - it's a...
Read more >
Color / FF9494 / error red
error red color by chromatic.
Read more >
Common Errors Color Scheme » Blue » SchemeColor.com
The Common Errors Color Scheme palette has 5 colors which are Middle Green (#428959), YInMn Blue (#2A4F87), Tangerine (#F18F01), Dark Pastel Red (#C73E1D)...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found