From 040e2ae9d707d50ed9c262f2a37408a62b3bcc03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karsten=20Ku=CC=88pper?= Date: Mon, 18 Aug 2025 17:24:45 -0400 Subject: [PATCH] add DefaultBackground color --- Src/Notion.Client/Models/Blocks/Color.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Src/Notion.Client/Models/Blocks/Color.cs b/Src/Notion.Client/Models/Blocks/Color.cs index 46e38e2a..b05acd51 100644 --- a/Src/Notion.Client/Models/Blocks/Color.cs +++ b/Src/Notion.Client/Models/Blocks/Color.cs @@ -36,6 +36,9 @@ public enum Color [EnumMember(Value = "red")] Red, + [EnumMember(Value = "default_background")] + DefaultBackground, + [EnumMember(Value = "gray_background")] GrayBackground,