mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-20 00:46:34 +00:00
Fixed layout, updated icon colours
This commit is contained in:
parent
3ecebb8efd
commit
35234d4c02
2 changed files with 13 additions and 13 deletions
Binary file not shown.
|
@ -12,16 +12,16 @@ use training_mod_consts::{FighterId, InputDisplay, MENU};
|
||||||
use super::{frame_counter, input_record::STICK_CLAMP_MULTIPLIER};
|
use super::{frame_counter, input_record::STICK_CLAMP_MULTIPLIER};
|
||||||
|
|
||||||
const GREEN: ResColor = ResColor {
|
const GREEN: ResColor = ResColor {
|
||||||
r: 0,
|
r: 22,
|
||||||
g: 255,
|
g: 156,
|
||||||
b: 0,
|
b: 0,
|
||||||
a: 0,
|
a: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
const RED: ResColor = ResColor {
|
const RED: ResColor = ResColor {
|
||||||
r: 255,
|
r: 153,
|
||||||
g: 0,
|
g: 10,
|
||||||
b: 0,
|
b: 10,
|
||||||
a: 0,
|
a: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,22 +34,22 @@ const CYAN: ResColor = ResColor {
|
||||||
|
|
||||||
const BLUE: ResColor = ResColor {
|
const BLUE: ResColor = ResColor {
|
||||||
r: 0,
|
r: 0,
|
||||||
g: 255,
|
g: 40,
|
||||||
b: 0,
|
b: 108,
|
||||||
a: 0,
|
a: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
const PURPLE: ResColor = ResColor {
|
const PURPLE: ResColor = ResColor {
|
||||||
r: 255,
|
r: 100,
|
||||||
g: 0,
|
g: 66,
|
||||||
b: 255,
|
b: 202,
|
||||||
a: 0,
|
a: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub const YELLOW: ResColor = ResColor {
|
pub const YELLOW: ResColor = ResColor {
|
||||||
r: 255,
|
r: 230,
|
||||||
g: 255,
|
g: 180,
|
||||||
b: 0,
|
b: 14,
|
||||||
a: 0,
|
a: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue