enventor - elaborate font style in dark theme

This commit is contained in:
ChunEon Park 2013-09-21 01:47:05 +09:00
parent c30ed2dbe8
commit 85a868539a
4 changed files with 18 additions and 18 deletions

View File

@ -990,10 +990,12 @@ group { name: "setting_layout";
type: TEXT;
scale: 1;
clip_to: "clipper";
effect: SHADOW BOTTOM;
description {
rel1 {to: "img_path_icon"; relative: 1 0; offset: 5 1;}
rel2 {to: "img_path_icon"; relative: 1 1;}
color: 255 255 255 255;
color3: 0 0 0 128;
align: 0 0.5;
fixed: 1 1;
text {
@ -1035,12 +1037,14 @@ group { name: "setting_layout";
}
part { name: "snd_path_guide";
type: TEXT;
effect: SHADOW BOTTOM;
scale: 1;
clip_to: "clipper";
description {
rel1 {to: "snd_path_icon"; relative: 1 0; offset: 5 1;}
rel2 {to: "snd_path_icon"; relative: 1 1;}
color: 255 255 255 255;
color3: 0 0 0 128;
align: 0 0.5;
fixed: 1 1;
text {
@ -1082,12 +1086,14 @@ group { name: "setting_layout";
}
part { name: "fnt_path_guide";
type: TEXT;
effect: SHADOW BOTTOM;
scale: 1;
clip_to: "clipper";
description {
rel1 {to: "fnt_path_icon"; relative: 1 0; offset: 5 1;}
rel2 {to: "fnt_path_icon"; relative: 1 1;}
color: 255 255 255 255;
color3: 0 0 0 128;
align: 0 0.5;
fixed: 1 1;
text {
@ -1129,12 +1135,14 @@ group { name: "setting_layout";
}
part { name: "data_path_guide";
type: TEXT;
effect: SHADOW BOTTOM;
scale: 1;
clip_to: "clipper";
description {
rel1 {to: "data_path_icon"; relative: 1 0; offset: 5 1;}
rel2 {to: "data_path_icon"; relative: 1 1;}
color: 255 255 255 255;
color3: 0 0 0 128;
align: 0 0.5;
fixed: 1 1;
text {
@ -1176,12 +1184,14 @@ group { name: "setting_layout";
}
part { name: "preference_guide";
type: TEXT;
effect: SHADOW BOTTOM;
scale: 1;
clip_to: "clipper";
description {
rel1 {to: "preference_icon"; relative: 1 0; offset: 5 1;}
rel2 {to: "preference_icon"; relative: 1 1;}
color: 255 255 255 255;
color3: 0 0 0 128;
align: 0 0;
fixed: 1 1;
text {

View File

@ -1,7 +1,7 @@
styles
{
style { name: "entry_linenumber_style";
base: "font="FN" font_size=11 color=#a0a0a0 text_class=entry";
base: "font="FN" font_size=11 color=#a0a0a0 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";
@ -9,20 +9,15 @@ styles
tag: "preedit_sel" "+ backing=on backing_color=#000 color=#FFFFFF";
}
style { name: "entry_edit_style";
base: "font="FN" font_size=11 color=#cfcfcf text_class=entry";
base: "font="FN" font_size=11 color=#ffffff 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";
tag: "preedit" "+ underline=on underline_color=#000";
tag: "preedit_sel" "+ backing=on backing_color=#000 color=#FFFFFF";
}
style { name: "entry_textblock_guide_style";
base: "font="FN" font_size=10 color=#00000040 wrap=word text_class=entry ellipsis=0.0";
tag: "em" "+ font_style=Oblique";
tag: "hilight" "+ font_weight=Bold";
}
style { name: "entry_single_textblock_style";
base: "font="FN" font_size=12 color=#ffffff wrap=none text_class=entry left_margin=2 right_margin=2";
base: "font="FN" font_size=12 color=#ffffff wrap=none text_class=entry left_margin=2 right_margin=2 shadow_color=#00000080 style=shadow,bottom";
tag: "br" "";
tag: "ps" "";
tag: "em" "+ font_style=Oblique";

View File

@ -16,11 +16,6 @@ styles
tag: "preedit" "+ underline=on underline_color=#000";
tag: "preedit_sel" "+ backing=on backing_color=#000 color=#FFFFFF";
}
style { name: "entry_textblock_guide_style";
base: "font="FN" font_size=10 color=#00000040 wrap=word text_class=entry ellipsis=0.0";
tag: "em" "+ font_style=Oblique";
tag: "hilight" "+ font_weight=Bold";
}
style { name: "entry_single_textblock_style";
base: "font="FN" font_size=12 color=#323232 wrap=none text_class=entry left_margin=2 right_margin=2";
tag: "br" "";

View File

@ -28,11 +28,11 @@ color_init(Eina_Strbuf *strbuf)
if (DARK_THEME)
{
cd->col1 = eina_stringshare_add("A6A6A6");
cd->col2 = eina_stringshare_add("00BBBC");
cd->col3 = eina_stringshare_add("C8C600");
cd->col4 = eina_stringshare_add("C000C0");
cd->col5 = eina_stringshare_add("00D000");
cd->col1 = eina_stringshare_add("FFFFFF");
cd->col2 = eina_stringshare_add("00FFFF");
cd->col3 = eina_stringshare_add("FFFF00");
cd->col4 = eina_stringshare_add("FF00FF");
cd->col5 = eina_stringshare_add("00FF00");
cd->col6 = eina_stringshare_add("0000FF");
}
else