-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add colors to config, add rotating sponsor block (#9)
* added support for rotating sponsor images * started working on customizable colors using css variables * started configuring the svg colors * migrated to using separate component for shields * added default values in case they're not specified in the json config * set correct color values in roundreasons * updated README * ran prettier and linting * add configurable light colors * added primary, secondary and credit colors as separate configuration * equalized gradients as much as possible * updated README to current configuration values and changed border color * Load config with defaults instead of only set values, add shield-currency-rgb * Get the colors a bit closer to the current colors --------- Co-authored-by: Dunkel <7890309+DarkView@users.noreply.github.com>
- Loading branch information
1 parent
eb865b4
commit 7cf42c3
Showing
31 changed files
with
366 additions
and
123 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
{ | ||
"serverEndpoint": "http://localhost:5200" | ||
"serverEndpoint": "http://localhost:5200", | ||
"sponsorImageUrls": ["/assets/misc/logo.webp"], | ||
"sponsorImageRotateSpeed": 5000, | ||
"attackerColorPrimary": "#b82e3c", | ||
"attackerColorSecondary": "#ff4557", | ||
"attackerColorShieldCurrency": "#ff838f", | ||
"defenderColorPrimary": "#25ac79", | ||
"defenderColorSecondary": "#61eab6", | ||
"defenderColorShieldCurrency": "#61eab6" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.