From 64299f65d468ffcdab67be2e8c4a82cc75bb485a Mon Sep 17 00:00:00 2001 From: Daniel Tan Date: Tue, 3 Jun 2025 15:10:24 +0800 Subject: [PATCH] Fix example in readme In this example code snippet, the variable name was specified as `zen_colors` but the code was extracting the colors for the "ink" palette. Did a simple fix to make the variable name consistent with the code. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b789756..7673513 100644 --- a/README.md +++ b/README.md @@ -257,7 +257,7 @@ local palette_colors = colors.palette local theme_colors = colors.theme -- Get the colors for a specific theme -local zen_colors = require("kanso.colors").setup({ theme = 'ink' }) +local zen_colors = require("kanso.colors").setup({ theme = 'zen' }) ``` ## 🧩 Extras