Added a colour scheme for red.

This commit is contained in:
PeekabooSteam 2023-03-22 20:20:21 +00:00
parent 3b5ea9c050
commit 1f2887c75a
2 changed files with 13 additions and 1 deletions

View File

@ -32,7 +32,7 @@ body.feature-forceShowUnitControlPanel #unit-control-panel {
}
#unit-control-panel #selected-units-container button::before {
background-color: var( --accent-light-blue );
background-color: var( --primary-grey );
border-radius: var( --border-radius-md );
content: attr( data-short-label );
margin:0 5px;
@ -41,6 +41,17 @@ body.feature-forceShowUnitControlPanel #unit-control-panel {
width:fit-content;
}
#unit-control-panel #selected-units-container button[data-coalition="blue"]::before {
background-color: var( --accent-light-blue );
}
#unit-control-panel #selected-units-container button[data-coalition="red"]::before {
background-color: var( --accent-light-red );
color:var(--secondary-red-outline)
}
#unit-control-panel #selected-units-container button::after {
border-radius: var( --border-radius-sm );
content: attr( data-callsign );

View File

@ -19,6 +19,7 @@
--accent-green : #8bff63;
--accent-light-blue : #5ca7ff;
--accent-light-red : #ffcccc;
--background-grey : #3d4651;
--background-slate-blue : #363c43;