working change of the themes

This commit is contained in:
filipriec
2025-03-22 22:55:43 +01:00
parent 5f6858251c
commit 16a7fa0bcc
14 changed files with 15 additions and 12 deletions

View File

@@ -5,7 +5,7 @@ use ratatui::{
style::Style,
Frame,
};
use crate::config::colors::Theme;
use crate::config::colors::themes::Theme;
pub fn render_background(f: &mut Frame, area: Rect, theme: &Theme) {
let background = Block::default()

View File

@@ -5,7 +5,7 @@ use ratatui::{
layout::Rect,
Frame,
};
use crate::config::colors::Theme;
use crate::config::colors::themes::Theme;
pub fn render_command_line(f: &mut Frame, area: Rect, input: &str, active: bool, theme: &Theme, message: &str) {
let prompt = if active {

View File

@@ -6,7 +6,7 @@ use ratatui::{
Frame,
text::{Line, Span},
};
use crate::config::colors::Theme;
use crate::config::colors::themes::Theme;
use std::path::Path;
pub fn render_status_line(