miniverse 0.1.2

A library for simulating n-body gravity interactions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use bevy::prelude::Color;

pub const gray_light: Color = Color::rgb(1.0, 1.0, 1.0);
pub const gray_dark: Color = Color::rgb(0.1, 0.1, 0.1);

pub const red: Color = Color::rgb(0.85, 0.08, 0.23);
pub const red_light: Color = Color::rgb(0.9, 0.1, 0.2);

pub const blue: Color = Color::rgb(0.0, 0.74, 1.0);

pub const yellow: Color = Color::rgb(1.0, 1.0, 0.0);
pub const yellow_light: Color = Color::rgb(1.0, 1.0, 0.4);

pub const green_lime: Color = Color::rgb(0.0, 1.0, 0.0);