Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
pub mod default_themes;
pub mod theme;
pub mod theme_chooser;
pub mod theme_creator;
pub mod theme_creator_body;
pub mod theme_creator_modal;
pub mod theme_deletion_body;
pub mod theme_deletion_modal;
use warp_core::ui::theme::WarpTheme;
pub fn onboarding_theme_picker_themes() -> [WarpTheme; 4] {
[
default_themes::phenomenon(),
default_themes::dark_theme(),
default_themes::light_theme(),
default_themes::adeberry(),
]
}