From 61c6e5e46a9caa45956239082ed8b6b524686453 Mon Sep 17 00:00:00 2001 From: P T Weir Date: Mon, 15 Jul 2024 10:18:46 +0100 Subject: feat(tui): Customizable Themes (#2236) * wip: add theme * feat(theme): basic theming approach * feat(theme): adds theming support * fix: split out palette without compact inspector * fix(theme): tidy up implementation * fix(theme): correct yaml to toml * fix(theme): typo in comments * chore: cheer up clippy * fix(themes): ensure tests cannot hit real loading directory * chore: rustfmt * chore: rebase * feat(themes): add rgb hexcode support * fix(theme): add tests * fix(theme): use builtin log levels and correct debug test * feat(theme): adds the ability to derive from a non-base theme * fix(theme): warn if the in-file name of a theme does not match the filename * chore: tidy for rustfmt and clippy * chore: tidy for rustfmt and clippy --- crates/atuin-client/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/atuin-client/src/lib.rs') diff --git a/crates/atuin-client/src/lib.rs b/crates/atuin-client/src/lib.rs index a6842038..d0f6ee73 100644 --- a/crates/atuin-client/src/lib.rs +++ b/crates/atuin-client/src/lib.rs @@ -20,5 +20,6 @@ pub mod record; pub mod register; pub mod secrets; pub mod settings; +pub mod theme; mod utils; -- cgit v1.3.1