Subversion Repositories Kolibri OS

Rev

Rev 4411 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4411 Rev 5499
Line 184... Line 184...
184
	if (ESBYTE[color_str] == '#')
184
	if (ESBYTE[color_str] == '#')
185
		return StrToCol(color_str);
185
		return StrToCol(color_str);
186
	else
186
	else
187
		for (ii=0; color_specs[ii].name!=0; ii++)
187
		for (ii=0; color_specs[ii].name!=0; ii++)
188
		{
188
		{
189
			if (!strcmp(color_str, color_specs[ii].name)) return color_specs[ii].rgb;
189
			if (!strcmpi(color_str, color_specs[ii].name)) return color_specs[ii].rgb;
190
		}
190
		}
Line 191... Line 191...
191
 
191
 
192
	return text_colors[0];
192
	return text_colors[0];