Files
zoeae/src/constants.rs
T

9 lines
386 B
Rust
Raw Normal View History

2026-01-24 19:53:46 -06:00
use iced::Font;
pub const CUSTOM_FONT_BYTES: &[u8] = include_bytes!("./fonts/CaskaydiaCoveNFM-Regular.ttf");
pub const CUSTOM_FONT: Font = Font::with_name("CaskaydiaCove Nerd Font Mono");
pub const DEFAULT_EDITOR_FONT_SIZE: u32 = 16;
pub const MAX_EDITOR_FONT_SIZE: u32 = 80;
pub const MIN_EDITOR_FONT_SIZE: u32 = 12;
pub const ICON_BYTES: &[u8] = include_bytes!("./images/icon.ico");