diff --git a/crates/gpui/src/fonts.rs b/crates/gpui/src/fonts.rs index 298bc27d21..cd7d4e0444 100644 --- a/crates/gpui/src/fonts.rs +++ b/crates/gpui/src/fonts.rs @@ -78,6 +78,8 @@ thread_local! { struct TextStyleJson { color: Color, family: String, + #[serde(default)] + features: Features, weight: Option, size: f32, #[serde(default)] @@ -184,7 +186,7 @@ impl TextStyle { json.family, json.size, font_properties, - Default::default(), + json.features, underline_from_json(json.underline), json.color, font_cache, diff --git a/styles/src/styleTree/components.ts b/styles/src/styleTree/components.ts index 3f69df981e..033c0c8725 100644 --- a/styles/src/styleTree/components.ts +++ b/styles/src/styleTree/components.ts @@ -97,7 +97,12 @@ export interface TextProperties { size?: keyof typeof fontSizes weight?: FontWeight underline?: boolean - color?: string + color?: string, + features?: TextFeatures, +} + +interface TextFeatures { + calt?: boolean } export function text(