ZEReader 0.1.0
A Zephyr-based E-Book-Reader
Loading...
Searching...
No Matches
ui_style.h
1/*
2 * SPDX-FileCopyrightText: 2025 Anna-Lena Marx <mail@marx.engineer>
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 */
6
7#ifndef _UI_STYLE_H_
8#define _UI_STYLE_H_
9
10#include <lvgl.h>
11
12LV_FONT_DECLARE(notoserif_14);
13
14extern lv_style_t style_font_notoserif_14;
15
16void ui_style_init(void);
17
18#endif /* _UI_STYLE_H_ */