17 lines
339 B
C
17 lines
339 B
C
/**
|
|
* @file lisa_ui_res.h
|
|
* @brief UI resources declaration - fonts and assets
|
|
*/
|
|
|
|
#ifndef __LISA_UI_RES_H__
|
|
#define __LISA_UI_RES_H__
|
|
|
|
#include "lvgl.h"
|
|
|
|
/* Font declarations */
|
|
LV_FONT_DECLARE(lv_font_notosans_cs_medium_14);
|
|
LV_FONT_DECLARE(lv_font_chinese_18);
|
|
LV_FONT_DECLARE(lv_font_rubik_bold_64);
|
|
|
|
#endif /* __LISA_UI_RES_H__ */
|