enventor - elaborate syntax color.

This commit is contained in:
ChunEon Park 2013-10-18 16:59:36 +09:00
parent 6f06d145e7
commit 2f474818af
2 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@
styles
{
style { name: "entry_linenumber_style";
base: "font="FN" font_size=11 color=#a0a0a0 text_class=entry shadow_color=#00000080 style=shadow,bottom";
base: "font="FN" font_size=11 color=#656565 text_class=entry shadow_color=#00000080 style=shadow,bottom";
tag: "em" "+ font_style=Oblique";
tag: "link" "+ color=#800 underline=on underline_color=#8008";
tag: "hilight" "+ font_weight=Bold";
@ -19,7 +19,7 @@ styles
tag: "preedit_sel" "+ backing=on backing_color=#000 color=#FFFFFF";
}
style { name: "entry_edit_style";
base: "font="FN" font_size=11 color=#ffffff text_class=entry shadow_color=#00000080 style=shadow,bottom";
base: "font="FN" font_size=11 color=#d4d4d4 text_class=entry shadow_color=#00000080 style=shadow,bottom";
tag: "em" "+ font_style=Oblique";
tag: "link" "+ color=#800 underline=on underline_color=#8008";
tag: "hilight" "+ font_weight=Bold";

View File

@ -23,12 +23,12 @@ color_init(Eina_Strbuf *strbuf)
color_data *cd = malloc(sizeof(color_data));
cd->strbuf = strbuf;
cd->cols[0] = eina_stringshare_add("424242");
cd->cols[1] = eina_stringshare_add("A000A0");
cd->cols[2] = eina_stringshare_add("0000A0");
cd->cols[3] = eina_stringshare_add("969600");
cd->cols[4] = eina_stringshare_add("009600");
cd->cols[5] = eina_stringshare_add("00C0C0");
cd->cols[0] = eina_stringshare_add("656565");
cd->cols[1] = eina_stringshare_add("2070D0");
cd->cols[2] = eina_stringshare_add("72AAD4");
cd->cols[3] = eina_stringshare_add("D47F00");
cd->cols[4] = eina_stringshare_add("00B000");
cd->cols[5] = eina_stringshare_add("D42A2A");
return cd;
}