#[cfg(target_os = "macos")]
pub fn external_fallbacks() -> Vec<String> {
vec![
String::from(".SF NS"),
String::from("Menlo"),
String::from("Geneva"),
String::from("Arial Unicode MS"),
]
}
#[cfg(target_os = "windows")]
pub fn external_fallbacks() -> Vec<String> {
vec![
String::from("Segoe UI"),
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("DejaVu Sans"),
String::from("FreeSans"),
String::from("Noto Sans Mono"),
String::from("DejaVu Sans Mono"),
String::from("FreeMono"),
String::from("Noto Sans Symbols"),
String::from("Noto Sans Symbols2"),
]
}