2022-09-30 09:35:55 -06:00
|
|
|
pub use iced::Font;
|
|
|
|
|
|
|
|
|
|
pub const FONT: Font = Font::External {
|
|
|
|
|
name: "Fira Sans Regular",
|
2022-10-03 11:45:46 -06:00
|
|
|
bytes: include_bytes!("../res/FiraSans/Regular.otf"),
|
2022-09-30 09:35:55 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pub const FONT_LIGHT: Font = Font::External {
|
|
|
|
|
name: "Fira Sans Light",
|
2022-10-03 11:45:46 -06:00
|
|
|
bytes: include_bytes!("../res/FiraSans/Light.otf"),
|
2022-09-30 09:35:55 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pub const FONT_SEMIBOLD: Font = Font::External {
|
|
|
|
|
name: "Fira Sans SemiBold",
|
2022-10-03 11:45:46 -06:00
|
|
|
bytes: include_bytes!("../res/FiraSans/SemiBold.otf"),
|
2022-09-30 09:35:55 -06:00
|
|
|
};
|