From e46a63d1727a36bf22e35fe8f1e84143e3ab29b9 Mon Sep 17 00:00:00 2001 From: Wassim SAMAD Date: Wed, 17 Jun 2026 21:18:42 -0400 Subject: [PATCH] feat(paint-slots): fence base + rail default to greige Co-Authored-By: Claude Opus 4.8 (1M context) --- packages/nodes/src/fence/slots.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nodes/src/fence/slots.ts b/packages/nodes/src/fence/slots.ts index 6874ef67..bda95e92 100644 --- a/packages/nodes/src/fence/slots.ts +++ b/packages/nodes/src/fence/slots.ts @@ -7,8 +7,8 @@ export type FenceSlotId = 'posts' | 'infill' | 'base' | 'rail' export const FENCE_POSTS_SLOT_DEFAULT = 'library:preset-charcoal' export const FENCE_INFILL_SLOT_DEFAULT = 'library:preset-charcoal' -export const FENCE_BASE_SLOT_DEFAULT = 'library:preset-charcoal' -export const FENCE_RAIL_SLOT_DEFAULT = 'library:wood-finewood27' +export const FENCE_BASE_SLOT_DEFAULT = 'library:preset-greige' +export const FENCE_RAIL_SLOT_DEFAULT = 'library:preset-greige' export const FENCE_SLOT_DEFAULTS: Record = { posts: FENCE_POSTS_SLOT_DEFAULT,