use crate::services::theme::AppTheme;
use crate::widgets::hotkey_footer::HotkeyFooter;
impl HotkeyFooter {
pub fn with_theme(mut self, theme: &AppTheme) -> Self {
self.key_color = theme.primary;
self.description_color = theme.text_muted;
self.background_color = theme.background;
self
}
}