Which color is used in Button in Normal state in Android Theme holo_dark?
I have read this question and have added color images corresponding to the color name but none matches the color used in Button normal state theme holo_dark?
Which color is used in Button in Normal state in Android Theme holo_dark?
I have read this question and have added color images corresponding to the color name but none matches the color used in Button normal state theme holo_dark?
I don't know which color they use, but you can look into their 9Patch background drawables. You can find it here. Note that it uses an alpha value, so you can't really find out what color it is(at least I don't know how it could be possible).
Edit:
Ok, I did find out how to find out the opacity with photoshop. You can see that in the info window. So now that's the color:
Alpha: 40%
Red: 153
Green: 153
Blue: 153
The color would be this:
#66999999
I've just also wanted to replicate the colour of an Android standard button in my own app and it appears that the colour used is as follows:
Red: 188
Green: 188
Blue: 188
This converted into Hex code is:
#BCBCBC.
Obviously this doesn't include the fact that Android includes borders etc. on their buttons but this is the base colour used. Hope this helps!