bevy/examples/ecs
Rob Parrett 0746b8eb4c
Fix green colors becoming darker in various examples (#12328)
# Objective

Fixes #12225

Prior to the `bevy_color` port, `GREEN` used to mean "full green." But
it is now a much darker color matching the css1 spec.

## Solution

Change usages of `basic::GREEN` or `css::GREEN` to `LIME` to restore the
examples to their former colors.

This also removes the duplicate definition of `GREEN` from `css`. (it
was already re-exported from `basic`)

## Note

A lot of these examples could use nicer colors. I'm not trying to do
that here.

"Dark Grey" will be tackled separately and has its own tracking issue.
2024-03-05 23:42:03 +00:00
..
component_change_detection.rs
component_hooks.rs
custom_query_param.rs
custom_schedule.rs
dynamic.rs
ecs_guide.rs
event.rs
fixed_timestep.rs
generic_system.rs
hierarchy.rs
iter_combinations.rs
nondeterministic_system_order.rs
one_shot_systems.rs
parallel_query.rs
removal_detection.rs
run_conditions.rs
send_and_receive_events.rs
startup_system.rs
state.rs
system_closure.rs
system_param.rs
system_piping.rs
system_stepping.rs