Skip to content

Commit

Permalink
fix ticker color
Browse files Browse the repository at this point in the history
  • Loading branch information
Mond1c authored and kbats183 committed Mar 6, 2024
1 parent 67bb52e commit 7a0900f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export const Ticker = () => {
{isLoaded &&
<>
<SingleTicker part={"short"} color={c.TICKER_SMALL_BACKGROUND}/>
<SingleTicker part={"long"} color={c.SCOREBOARD_BACKGROUND_COLOR}/>
<SingleTicker part={"long"} color={c.TICKER_BACKGROUND}/>
</>
}
</TickerWrap>;
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/overlay/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ config.CELL_NAME_RIGHT_PADDING = config.CELL_NAME_LEFT_PADDING; // css property

config.TICKER_SMALL_SIZE = "12%"; // css property
config.TICKER_SMALL_BACKGROUND = config.VERDICT_NOK;
config.TICKER_BACKGROUND = config.CELL_BG_COLOR;
config.TICKER_BACKGROUND = config.SCOREBOARD_BACKGROUND_COLOR;
config.TICKER_OPACITY = 0.95;
config.TICKER_FONT_COLOR = "#FFFFFF";
config.TICKER_FONT_FAMILY = config.GLOBAL_DEFAULT_FONT_FAMILY;
Expand Down

0 comments on commit 7a0900f

Please sign in to comment.