aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/lv_pinetime_theme.h
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2022-09-11 14:59:49 +0200
committerJean-François Milants <jf@codingfield.com>2022-09-11 14:59:49 +0200
commitada2c09581d2d13acfa5ce9a97671c0ec17863f1 (patch)
tree2f776adc59d0c63e403d2043cb8460e65d6c46fe /src/displayapp/lv_pinetime_theme.h
parent18cff286c75f432095db4b188e0f9a8a9e2bd8e8 (diff)
parentc9a5c3fa5c930a5939d3114a6c6b48570d61ca24 (diff)
Merge branch 'develop' into infineat-external-resources
# Conflicts: # src/displayapp/screens/Symbols.h # src/displayapp/screens/settings/SettingWatchFace.cpp # src/displayapp/screens/settings/SettingWatchFace.h
Diffstat (limited to 'src/displayapp/lv_pinetime_theme.h')
-rw-r--r--src/displayapp/lv_pinetime_theme.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/displayapp/lv_pinetime_theme.h b/src/displayapp/lv_pinetime_theme.h
deleted file mode 100644
index 67cee0fa..00000000
--- a/src/displayapp/lv_pinetime_theme.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/**
- * @file lv_pinetime_theme.h
- *
- */
-
-#ifndef LV_PINETIME_THEME_H
-#define LV_PINETIME_THEME_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*********************
- * INCLUDES
- *********************/
-#include <lvgl/lvgl.h>
-
-/*********************
- * DEFINES
- *********************/
-/*Colors*/
-#define LV_PINETIME_WHITE lv_color_hex(0xffffff)
-#define LV_PINETIME_LIGHT lv_color_hex(0xf3f8fe)
-#define LV_PINETIME_GRAY lv_color_hex(0x8a8a8a)
-#define LV_PINETIME_LIGHT_GRAY lv_color_hex(0xc4c4c4)
-#define LV_PINETIME_BLUE lv_color_hex(0x5d697e)
-#define LV_PINETIME_GREEN lv_color_hex(0x4cb242)
-#define LV_PINETIME_RED lv_color_hex(0xd51732)
-
-/**********************
- * TYPEDEFS
- **********************/
-
-/**********************
- * GLOBAL PROTOTYPES
- **********************/
-
-/**
- * Initialize the default
- * @param color_primary the primary color of the theme
- * @param color_secondary the secondary color for the theme
- * @param flags ORed flags starting with `LV_THEME_DEF_FLAG_...`
- * @param font_small pointer to a small font
- * @param font_normal pointer to a normal font
- * @param font_subtitle pointer to a large font
- * @param font_title pointer to a extra large font
- * @return a pointer to reference this theme later
- */
-lv_theme_t* lv_pinetime_theme_init(lv_color_t color_primary,
- lv_color_t color_secondary,
- uint32_t flags,
- const lv_font_t* font_small,
- const lv_font_t* font_normal,
- const lv_font_t* font_subtitle,
- const lv_font_t* font_title);
-/**********************
- * MACROS
- **********************/
-
-#endif
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif