summaryrefslogtreecommitdiffstats
path: root/zellij-utils/src/shared.rs
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2021-12-20 17:31:07 +0100
committerGitHub <noreply@github.com>2021-12-20 17:31:07 +0100
commitca8438b0aa0e5e9aa1c69f0217c275d20f269a8f (patch)
tree97ee4922eb41415d54d3cb183ad9dbef66bd7186 /zellij-utils/src/shared.rs
parent2c1d3a9817e70ea3d4b55672166f3417d296cc44 (diff)
feat(collaboration): implement multiple users (#957)
* work * feat(collaboration): implement multiple users * style(cleanup): some leftovers
Diffstat (limited to 'zellij-utils/src/shared.rs')
-rw-r--r--zellij-utils/src/shared.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/zellij-utils/src/shared.rs b/zellij-utils/src/shared.rs
index 0211fb2cd..79695435f 100644
--- a/zellij-utils/src/shared.rs
+++ b/zellij-utils/src/shared.rs
@@ -53,6 +53,11 @@ pub mod colors {
pub const CYAN: u8 = 51;
pub const YELLOW: u8 = 226;
pub const BLUE: u8 = 45;
+ pub const PURPLE: u8 = 99;
+ pub const GOLD: u8 = 136;
+ pub const SILVER: u8 = 245;
+ pub const PINK: u8 = 207;
+ pub const BROWN: u8 = 215;
}
pub fn _hex_to_rgb(hex: &str) -> (u8, u8, u8) {
@@ -77,6 +82,11 @@ pub fn default_palette() -> Palette {
white: PaletteColor::EightBit(colors::WHITE),
orange: PaletteColor::EightBit(colors::ORANGE),
gray: PaletteColor::EightBit(colors::GRAY),
+ purple: PaletteColor::EightBit(colors::PURPLE),
+ gold: PaletteColor::EightBit(colors::GOLD),
+ silver: PaletteColor::EightBit(colors::SILVER),
+ pink: PaletteColor::EightBit(colors::PINK),
+ brown: PaletteColor::EightBit(colors::BROWN),
}
}