woodpecker_ui 0.1.1

A UI library for the Bevy game engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bevy::prelude::*;

/// Default dark background color
pub const DARK_BACKGROUND: Color = Color::Srgba(Srgba::new(0.098, 0.106, 0.128, 1.0));
/// Default background color
pub const BACKGROUND: Color = Color::Srgba(Srgba::new(0.188, 0.203, 0.274, 1.0));
/// Default mid background color
pub const BACKGROUND_MID: Color = Color::srgba(0.224, 0.239, 0.314, 1.0);
/// Default light background color
pub const BACKGROUND_LIGHT: Color = Color::Srgba(Srgba::new(0.254, 0.270, 0.349, 1.0));
/// Default primary color
pub const PRIMARY: Color = Color::Srgba(Srgba::new(0.871, 0.592, 0.592, 1.0));
/// Default primary light color
pub const PRIMARY_LIGHT: Color = Color::Srgba(Srgba::new(0.871, 0.482, 0.482, 1.0));