summaryrefslogtreecommitdiff
path: root/desktop/plot_style.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/plot_style.c')
-rw-r--r--desktop/plot_style.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/desktop/plot_style.c b/desktop/plot_style.c
index fa94076e8..54dbd40ce 100644
--- a/desktop/plot_style.c
+++ b/desktop/plot_style.c
@@ -137,3 +137,14 @@ static plot_style_t plot_style_stroke_history_static = {
};
plot_style_t *plot_style_stroke_history = &plot_style_stroke_history_static;
+/* Generic font style */
+static const plot_font_style_t plot_style_font_static = {
+ .family = PLOT_FONT_FAMILY_SANS_SERIF,
+ .size = 10,
+ .weight = 400,
+ .flags = FONTF_NONE,
+ .background = 0xffffff,
+ .foreground = 0x000000,
+};
+plot_font_style_t const * const plot_style_font = &plot_style_font_static;
+