created vintage theme

This commit is contained in:
evanpelle
2024-08-24 11:20:56 -07:00
parent 7bdad3577d
commit 4a409c3578
5 changed files with 132 additions and 13 deletions
+2 -1
View File
@@ -2,6 +2,7 @@ import {Player, PlayerInfo, TerraNullius, Tile} from "../Game";
import {within} from "../Util";
import {Config, PlayerConfig, Theme} from "./Config";
import {pastelTheme} from "./PastelTheme";
import {vintageTheme} from "./VintageTheme";
@@ -24,7 +25,7 @@ export class DefaultConfig implements Config {
lobbyLifetime(): number {
return 30 * 1000
}
theme(): Theme {return pastelTheme;}
theme(): Theme {return vintageTheme;}
}
export class DefaultPlayerConfig implements PlayerConfig {