0
votes
1answer
14 views
What browsers support Alpha channel in colors?
Since I'm always sticking to CSS 2, it was a (pleasant) surprise for me today to find out that CSS 3 supports alpha channels in colors. That allows for a nice range of effects. But …
1
vote
3answers
68 views
Exporting to Excel the simple way (but not CSV)
Yesterday I found this How-To on exporting data to Excel spreadsheets by simply producing HTML. Seemed like a straightforward way of exporting cells with formatting, what one can n …
0
votes
2answers
51 views
Invert colors on a control
I made a control that uses the OnPaint and base.OnPaint.
Now I want that all colors be inverted on certain conditions. But how do I do that? I now how to invert an image, but how d …
1
vote
1answer
19 views
How to mimic Dabble Color Schemes?
How would you develop something similar to what is described in this DabbleDB blog post?
0
votes
3answers
33 views
Is it possible to use theme colors in Windows Forms apps?
I normally make use of System Colors whenever possible when designing Windows Forms applications just so that it'll fit in with the user's preferences. But is it possible to use T …
0
votes
1answer
40 views
How to change Gmap markers color?
Hi! I've a custom google map with different points:
Markers[0] = new Array(new GMarker(new GLatLng(45.0, 9.0)), "Location1", "<strong>Address Line</strong><br/>S …
0
votes
5answers
83 views
What is rgb formula for a gradient going from white to blue?
I want to have a button that has numbers in the range 0 ... 255. I'd like the color of the button to be white when it's zero and blue (RGB = (0,0,255)) when it is 255. How can I ac …
0
votes
1answer
16 views
RichTextBox specific colors per few charicters / lines C#
i have say, richTextBox1, and here is the contents:
line one from my textbox is this, and i want this to be normal, arial, 8 point non-bold font
line two, i want everything after …
16
votes
9answers
495 views
How to generate random ‘greenish’ colors
Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this:
color = (randint(100, 200), randint(120, 255), ran …
0
votes
3answers
42 views
simple text color in rich text box
I can find a million examples of doing reg ex to apply syntax highlighting to a rich text box. but what i need it just a simple way to add in a word of a diffrent color.
What wou …
1
vote
3answers
92 views
JS function to calculate complementary color?
Does anybody know, off the top of your heads, a Javascript solution for calculating the complementary colour of a hex value?
There is a number of colour picking suites and palette …
1
vote
1answer
53 views
Eclipse highlight occurrences, right column marker color
Similar, but different to this question:
I use highlight occurrences a lot, but sometimes I'm irritated by how hard it is to see the little grey-ish rectangles on the rightmost si …
0
votes
1answer
21 views
Wufoo Color Formula
I remeber reading (I guess it was on the Wufoo Blog) something about how they pick their colors, I believe it was some kind of a function that given a set of colors it would genera …
0
votes
2answers
57 views
does netbeans support coloring for .sh (bash) scripts?
I use netbeans 6.8 beta and when i load .sh (bash) file it's not colored at all. i can add a new file association for the .sh extension but it doesn't seem that there is a known as …
1
vote
4answers
86 views
Programmatically obtaining the number of colors used in an image
Question:
Given an image in PNG format, what is the simplest way to programmatically obtain the number of colors used in the image?
Constraints:
The solution will be integre …
