Skip to content

Commit

Permalink
update: Thu 08 Aug 2024 11:22:03 CEST
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Aug 8, 2024
1 parent 308d39c commit 055cee0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/api/utils/FontUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ export default class FontUtils {
static readonly PLAYFUL = 'Cardenio Modern, sans-serif';
static readonly MODERN = 'AvantGarde Bk BT, sans-serif';
static readonly FUTURISTIC = 'Realpolitik, sans-serif';
static readonly ANCIENT = 'Julius Sans One, sans-serif';
static readonly CLASSIC = 'Noto Serif Toto, sans-serif';
}
1 change: 1 addition & 0 deletions src/fonts.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/games/seven-wonders-duel/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import greenChip from './assets/green-chip.png';
import coins from './assets/coins.png';
import military from './assets/military.png';
import { WinMode } from '../../api/types/WinMode';
import FontUtils from '../../api/utils/FontUtils';

export default function getDefinition() {
return {
Expand All @@ -17,6 +18,7 @@ export default function getDefinition() {
secondaryColor: '#2a7c6d',
playerSizes: [2],
winMode: WinMode.MOST,
fontFamily: FontUtils.ANCIENT,
rows: [
{
name: 'Blue cards',
Expand Down
2 changes: 1 addition & 1 deletion src/games/world-wonders/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function getDefinition() {
fontColor: '#6c5f56',
primaryColor: '#b39d90',
secondaryColor: '#ffec33',
fontFamily: FontUtils.CLASSIC,
fontFamily: FontUtils.ANCIENT,
stripColor: '#cfbeb0',
playerSizes: [1, 2, 3, 4, 5],
winMode: WinMode.MOST,
Expand Down

0 comments on commit 055cee0

Please sign in to comment.