#[cfg(target_os = "macos")]
pub fn external_fallbacks() -> Vec<String> {
vec![
String::from("Menlo"),
String::from("Geneva"),
String::from("Arial Unicode MS"),
String::from("Apple Color Emoji"),
]
}
#[cfg(target_os = "windows")]
pub fn external_fallbacks() -> Vec<String> {
vec![
String::from("Segoe UI"),
String::from("Segoe UI Emoji"),
String::from("Segoe UI Symbol"),
String::from("Segoe UI Historic"),
]
}
#[cfg(not(any(target_os = "macos", windows)))]
pub fn external_fallbacks() -> Vec<String> {
vec![
String::from("Noto Sans"),
String::from("FreeSans"),
String::from("Noto Color Emoji"),
]
}