2022-12-06 16:12:59 +01:00
|
|
|
// Copyright 2022 System76 <info@system76.com>
|
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
2022-09-30 09:35:55 -06:00
|
|
|
pub use iced::Font;
|
|
|
|
|
|
2023-05-08 18:22:10 -04:00
|
|
|
pub const FONT: Font = Font::with_name("Fira Sans Regular");
|
|
|
|
|
// pub const FONT: Font = Font::External {
|
|
|
|
|
// name: "Fira Sans Regular",
|
|
|
|
|
// bytes: include_bytes!("../res/Fira/FiraSans-Regular.otf"),
|
|
|
|
|
// };
|
2022-09-30 09:35:55 -06:00
|
|
|
|
2023-05-08 18:22:10 -04:00
|
|
|
pub const FONT_LIGHT: Font = Font::with_name("Fira Sans Light");
|
2022-09-30 09:35:55 -06:00
|
|
|
|
2023-05-08 18:22:10 -04:00
|
|
|
// pub const FONT_LIGHT: Font = Font::External {
|
|
|
|
|
// name: "Fira Sans Light",
|
|
|
|
|
// bytes: include_bytes!("../res/Fira/FiraSans-Light.otf"),
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
pub const FONT_SEMIBOLD: Font = Font::with_name("Fira Sans SemiBold");
|
|
|
|
|
|
|
|
|
|
// pub const FONT_SEMIBOLD: Font = Font::External {
|
|
|
|
|
// name: "Fira Sans SemiBold",
|
|
|
|
|
// bytes: include_bytes!("../res/Fira/FiraSans-SemiBold.otf"),
|
|
|
|
|
// };
|