#![doc = include_str!("README.md")]
#![doc(alias = "typography")]
use crate::prelude::build_plugin::*;
pub(crate) const PLUGIN: StaticPlugin = Plugin::ListProperties(ListProperties {
props: map! {
"antialised" => {
&[
"-webkit-font-smoothing: antialiased;",
"-moz-osx-font-smoothing: grayscale;",
]
},
"subpixel-antialised" => {
&[
"-webkit-font-smoothing: auto;",
"-moz-osx-font-smoothing: auto;",
]
}
},
..ListProperties::default()
});