Does anyone know the CSS color code? I want to use the same color for my web page. Thanks!
问问题
938 次
2 回答
0
滚动视图纹理背景颜色是 kCGColorSpaceModelPattern,即它是一种图案。我不得不在我的 UIWebView 页面文本颜色中使用这种颜色,所以我把它转换成这样的颜色代码
UIColor *color =[UIColor scrollViewTexturedBackgroundColor];
const CGFloat *components = CGColorGetComponents(color.CGColor);
NSString *colorAsString = [NSString stringWithFormat:@"%f,%f,%f,%f", components[0], components[1], components[2], components[3]];
它返回了我的值 (1.000000,0.000000,0.000000,0.000000),这是一种清晰的颜色。
我使用了某种形式的灰色替代颜色,类似于 scrollViewTexturedBackgroundColor。该颜色的颜色代码是
rgb(77,77,77)
你可以使用它,它可能会有所帮助。
于 2014-03-13T11:17:06.940 回答
0
Native xCode colorPicker 给我下一个 rgb(111, 113, 121) hex 6F7179
于 2019-08-19T09:36:02.027 回答