feat: native layer code

feat: login kinds (nsec)
feat: write chat messages
This commit is contained in:
2024-10-31 15:56:29 +00:00
parent a98eb6f4ce
commit 58132d2cf5
21 changed files with 1396 additions and 180 deletions

View File

@ -1,6 +1,8 @@
use egui::Color32;
use egui::{Color32, Margin};
pub const FONT_SIZE: f32 = 13.0;
pub const ROUNDING_DEFAULT: f32 = 12.0;
pub const MARGIN_DEFAULT: Margin = Margin::symmetric(12., 6.);
pub const PRIMARY: Color32 = Color32::from_rgb(248, 56, 217);
pub const NEUTRAL_500: Color32 = Color32::from_rgb(115, 115, 115);
pub const NEUTRAL_800: Color32 = Color32::from_rgb(38, 38, 38);