aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-web-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'e-util/e-web-view.c')
-rw-r--r--e-util/e-web-view.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-web-view.c b/e-util/e-web-view.c
index e17a18080e..fb644418db 100644
--- a/e-util/e-web-view.c
+++ b/e-util/e-web-view.c
@@ -618,7 +618,7 @@ style_updated_cb (EWebView *web_view)
&color))
color_value = g_strdup_printf ("#%06x", e_rgba_to_value (&color));
else
- color_value = g_strdup("#ffffff");
+ color_value = g_strdup (E_UTILS_DEFAULT_THEME_BASE_COLOR);
style = g_strconcat ("background-color: ", color_value, ";", NULL);
@@ -637,7 +637,7 @@ style_updated_cb (EWebView *web_view)
&color))
color_value = g_strdup_printf ("#%06x", e_rgba_to_value (&color));
else
- color_value = g_strdup("#000000");
+ color_value = g_strdup (E_UTILS_DEFAULT_THEME_FG_COLOR);
style = g_strconcat ("color: ", color_value, ";", NULL);