mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-01 20:32:35 +00:00
20 lines
732 B
Rust
20 lines
732 B
Rust
use crate::ui::{
|
|
component::text::TextStyle,
|
|
display::{toif::Icon, Color, Font},
|
|
};
|
|
|
|
pub use super::super::theme::{BLACK, WHITE};
|
|
|
|
pub const BLD_BG: Color = BLACK;
|
|
pub const BLD_FG: Color = WHITE;
|
|
|
|
include_icon!(LOGO_EMPTY, "model_tr/res/logo_22_33_empty.toif");
|
|
include_icon!(ICON_TRASH, "model_tr/res/trash.toif");
|
|
include_icon!(ICON_ALERT, "model_tr/res/alert.toif");
|
|
include_icon!(ICON_SPINNER, "model_tr/res/spinner.toif");
|
|
include_icon!(ICON_REDO, "model_tr/res/redo.toif");
|
|
include_icon!(ICON_EXIT, "model_tr/res/exit.toif");
|
|
|
|
pub const TEXT_NORMAL: TextStyle = TextStyle::new(Font::NORMAL, BLD_FG, BLD_BG, BLD_FG, BLD_FG);
|
|
pub const TEXT_BOLD: TextStyle = TextStyle::new(Font::BOLD, BLD_FG, BLD_BG, BLD_FG, BLD_FG);
|