diff --git a/data/themes/dark/menu.edc b/data/themes/dark/menu.edc index d6b2af7..11f1b62 100644 --- a/data/themes/dark/menu.edc +++ b/data/themes/dark/menu.edc @@ -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 { diff --git a/data/themes/dark/theme_ext.edc b/data/themes/dark/theme_ext.edc index e4e5d5e..61ee7ed 100644 --- a/data/themes/dark/theme_ext.edc +++ b/data/themes/dark/theme_ext.edc @@ -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"; diff --git a/data/themes/default/theme_ext.edc b/data/themes/default/theme_ext.edc index f7f96a7..7e2f23e 100644 --- a/data/themes/default/theme_ext.edc +++ b/data/themes/default/theme_ext.edc @@ -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" ""; diff --git a/src/bin/syntax_color.c b/src/bin/syntax_color.c index 2bd667c..bcbf3f8 100644 --- a/src/bin/syntax_color.c +++ b/src/bin/syntax_color.c @@ -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