Facebook iPhone app colors
where can I find the colors (and their RGB values) of different pages in the Facebook iPhone app? For example, one the launche开发者_如何学Gor page, the color is some kind of blue, what exactly is its RGB combinations?
Straight from Facebook's iOS SDK:
static CGFloat kFacebookBlue[4] = {0.42578125, 0.515625, 0.703125, 1.0};
static CGFloat kBorderGray[4] = {0.3, 0.3, 0.3, 0.8};
static CGFloat kBorderBlack[4] = {0.3, 0.3, 0.3, 1};
static CGFloat kBorderBlue[4] = {0.23, 0.35, 0.6, 1.0};
PS: Colour Space is RGBA so these are % of R,G,B,A
Cheers, Rog
Open in firefox - use the colorpicker add-on :)
From here : https://addons.mozilla.org/en-US/firefox/addon/271/
(or if you're not a firefox fan, take a screenshot and use photoshop / image editor of choice)
精彩评论