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.
This commit is contained in:
Daniel Tan 2025-06-03 15:10:24 +08:00 committed by GitHub
commit 64299f65d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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