diff options
Diffstat (limited to 'test-client/tiles.ts')
-rw-r--r-- | test-client/tiles.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index 3b15385c..6eb1dc29 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -24,10 +24,12 @@ function circle(radius: number, fill: string, stroke?: string, stroke_width?: nu } const table = [base("rgb(133, 76, 38)")]; +const floor = [base("#333", "#222", 0.05)]; export const FALLBACK_TILE: Component[] = [base("#f0f")]; export const TILES: { [key: string]: Component[] } = { - "floor": [base("#333", "#222", 0.05)], + "floor": floor, "table": table, "pan": [...table, circle(0.4, "#444", "#999")], + "flour_bag": [...floor, circle(0.5, "#fff", "#ddd")], } |