-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: Mon 02 Dec 2024 02:46:11 PM CET
- Loading branch information
Showing
12 changed files
with
56 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import type GradientColor from '../display/GradientColor'; | ||
import State from './State'; | ||
|
||
const gradient: GradientColor = { | ||
firstColor: '#49ff6b', | ||
secondColor: '#49ff6b', | ||
thirdColor: '#ffde00', | ||
fontColor: '#000000' | ||
}; | ||
|
||
export default class EngineCycle extends State { | ||
public static readonly GAS_GENERATOR: State = new State('Gas Generator', gradient); | ||
|
||
public static readonly STAGED_COMBUSTION: State = new State('Staged Combustion', gradient); | ||
|
||
public static readonly EXPANDER: State = new State('Expander', gradient); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
import State from './State'; | ||
|
||
export default class Status { | ||
export default class Status extends State { | ||
public static readonly RETIRED: State = new State('Retired', { | ||
startColor: '#032d61', | ||
endColor: '#b51240' | ||
firstColor: '#620d0e', | ||
secondColor: '#ff2225', | ||
thirdColor: '#ff5557' | ||
}); | ||
|
||
public static readonly IN_USE: State = new State('In Use', { | ||
startColor: '#ffd800', | ||
endColor: '#cd0000' | ||
firstColor: '#66ffa3', | ||
secondColor: '#00ff65', | ||
thirdColor: '#006226', | ||
fontColor: '#000000' | ||
}); | ||
} |