pub use gpui;
#[macro_use]
pub mod macros;
pub mod colors {
use gpui::{black, white, red, green, blue, yellow, Hsla};
pub use gpui::{hsla, rgba};
pub const BLACK: Hsla = black();
pub const WHITE: Hsla = white();
pub const RED: Hsla = red();
pub const GREEN: Hsla = green();
pub const BLUE: Hsla = blue();
pub const YELLOW: Hsla = yellow();
}
pub mod sizes {
pub use gpui::{rems, px};
}
pub mod prelude {
pub use crate::{macros::*, colors::*, sizes::*};
pub use gpui::{FontWeight, Stateful};
pub use gpui::prelude::*;
pub use gpui;
}