Update theme2.rs

Nate Butler created

Change summary

crates/theme2/src/theme2.rs | 6 ++++++
1 file changed, 6 insertions(+)

Detailed changes

crates/theme2/src/theme2.rs 🔗

@@ -134,6 +134,12 @@ impl Theme {
             ignored: self.status().ignored,
         }
     }
+
+    /// Returns the [`Appearance`] for the theme.
+    #[inline(always)]
+    pub fn appearance(&self) -> Appearance {
+        self.appearance
+    }
 }
 
 #[derive(Clone, Debug, Default)]