use bevy::color::palettes::tailwind;
use bevy::prelude::*;
pub const CORNER_RADIUS: Val = Val::Px(2.0);
pub const CORNER_RADIUS_LG: Val = Val::Px(4.0);
pub const PRIMARY_COLOR: Srgba = tailwind::BLUE_500;
pub const WINDOW_BG: Color = Color::Srgba(tailwind::ZINC_900);
pub const PANEL_BG: Color = Color::Srgba(tailwind::ZINC_800);
pub const PANEL_HEADER_BG: Color = Color::Srgba(tailwind::ZINC_700);
pub const TOOLBAR_BG: Color = Color::Srgba(tailwind::ZINC_800);
pub const INPUT_BG: Color = Color::Srgba(tailwind::ZINC_900);
pub const MENU_BG: Color = Color::Srgba(Srgba {
red: tailwind::ZINC_800.red,
green: tailwind::ZINC_800.green,
blue: tailwind::ZINC_800.blue,
alpha: 0.98,
});
pub const STATUS_BAR_BG: Color = Color::Srgba(tailwind::ZINC_800);
pub const TOOLBAR_BUTTON_BG: Color = Color::Srgba(tailwind::ZINC_800);
pub const BACKGROUND_COLOR: Srgba = tailwind::ZINC_800;
pub const BORDER_SUBTLE: Color = Color::Srgba(tailwind::ZINC_700);
pub const BORDER_STRONG: Color = Color::Srgba(tailwind::ZINC_600);
pub const BORDER_COLOR: Srgba = tailwind::ZINC_700;
pub const HOVER_BG: Color = Color::srgba(1.0, 1.0, 1.0, 0.1);
pub const SELECTED_BG: Color = Color::srgba(0.0, 0.204, 0.431, 1.0);
pub const SELECTED_BORDER: Color = Color::srgba(0.035, 0.290, 0.580, 1.0);
pub const ACTIVE_BG: Color = Color::Srgba(tailwind::ZINC_600);
pub const DROP_TARGET_BG: Color = Color::Srgba(Srgba {
red: 0.3,
green: 0.5,
blue: 0.2,
alpha: 1.0,
});
pub const DROP_TARGET_BORDER: Color = Color::Srgba(Srgba {
red: 0.3,
green: 0.7,
blue: 0.4,
alpha: 1.0,
});
pub const CONTAINER_DROP_TARGET_BG: Color = Color::Srgba(Srgba {
red: 0.2,
green: 0.3,
blue: 0.2,
alpha: 0.3,
});
pub const CONNECTION_LINE: Color = Color::srgba(1.0, 1.0, 1.0, 0.2);
pub const CATEGORY_CAMERA: Color = Color::srgba(0.286, 0.506, 0.710, 1.0);
pub const CATEGORY_LIGHT: Color = Color::srgba(1.0, 0.882, 0.0, 1.0);
pub const CATEGORY_MESH: Color = Color::srgba(0.710, 0.537, 0.294, 1.0);
pub const CATEGORY_SCENE: Color = Color::srgba(0.0, 0.667, 0.733, 1.0);
pub const CATEGORY_ENTITY: Color = Color::srgba(0.259, 0.725, 0.514, 1.0);
pub const TEXT_PRIMARY: Color = Color::Srgba(tailwind::ZINC_200);
pub const TEXT_SECONDARY: Color = Color::Srgba(tailwind::ZINC_400);
pub const TEXT_ACCENT: Color = Color::Srgba(tailwind::BLUE_400);
pub const TEXT_ACCENT_HOVER: Color = Color::Srgba(tailwind::BLUE_300);
pub const TEXT_BODY_COLOR: Srgba = tailwind::ZINC_200;
pub const TEXT_DISPLAY_COLOR: Srgba = tailwind::ZINC_50;
pub const TEXT_MUTED_COLOR: Srgba = tailwind::ZINC_400;
pub const TYPE_NUMERIC: Color = Color::srgb(0.55, 0.78, 0.55);
pub const TYPE_BOOL: Color = Color::srgb(0.55, 0.65, 0.85);
pub const TYPE_STRING: Color = Color::srgb(0.85, 0.70, 0.45);
pub const TYPE_ENTITY: Color = Color::Srgba(tailwind::ZINC_300);
pub const TYPE_ENUM: Color = Color::srgb(0.72, 0.55, 0.82);
pub const DIR_ICON_COLOR: Color = Color::srgb(0.9, 0.8, 0.3);
pub const FILE_ICON_COLOR: Color = Color::Srgba(tailwind::ZINC_400);
pub const TEXT_SIZE_SM: f32 = 10.0;
pub const TEXT_SIZE: f32 = 12.0;
pub const TEXT_SIZE_LG: f32 = 14.0;
pub const TEXT_SIZE_XL: f32 = 18.0;
pub const FONT_SM: f32 = TEXT_SIZE_SM;
pub const FONT_MD: f32 = TEXT_SIZE;
pub const FONT_LG: f32 = TEXT_SIZE_LG;
pub const ICON_LG: f32 = 24.0;
pub const SPACING_XS: f32 = 2.0;
pub const SPACING_SM: f32 = 4.0;
pub const SPACING_MD: f32 = 8.0;
pub const SPACING_LG: f32 = 12.0;
pub const ROW_HEIGHT: f32 = 24.0;
pub const HEADER_HEIGHT: f32 = 28.0;
pub const STATUS_BAR_HEIGHT: f32 = 22.0;
pub const MENU_BAR_HEIGHT: f32 = 28.0;
pub const INPUT_HEIGHT: f32 = 28.0;
pub const BORDER_RADIUS_SM: f32 = 3.0;
pub const BORDER_RADIUS_MD: f32 = 4.0;
pub const BORDER_RADIUS_LG: f32 = 5.0;