Commit graph

13 commits

Author SHA1 Message Date
Webhooked
1afbbb449a feat: add minimal mode for reduced color palette
Add new `minimal` config option that provides a cleaner, more focused
  color scheme with fewer distinct colors:
  - Variables/constants: white
  - Functions/methods: blue
  - Types: aqua
  - Keywords/statements: gray
  - Operators: yellow
  - Brackets/punctuation: gray
  - Properties/members: violet
2026-01-31 16:47:32 +01:00
Webhooked
5e024e8294 fix: preserve explicit theme when background option changes
Fixes #48
2026-01-31 15:39:34 +01:00
Webhooked
26f5c9686b fix: respect vim.o.background when loading colorscheme
- Change default background.light from "ink" to "pearl" so light mode
    uses a light theme by default
  - Clear _EXPLICIT_THEME when load() is called without arguments so
    :colorscheme kanso properly respects vim.o.background setting

  Fixes #45
2026-01-10 12:39:28 +01:00
Webhooked
7b15ed796b fix: resolve lazy.nvim loading issue and theme priority 2025-07-31 08:56:33 +02:00
Webhooked
4823dfda15 fix: respect explicitly loaded theme variants (#29) 2025-07-28 09:52:50 +02:00
Webhooked
d1ba9eaf7c BREAKING CHANGE: rename "contrast" to "saturated" throughout codebase
This change renames all occurrences of "contrast" to "saturated" to better describe the functionality:
- Config option `foreground` now accepts "saturated" instead of "contrast"
- All internal color palette variables renamed from *Contrast to *Saturated
- Documentation updated to reflect the new terminology

Migration guide:
- If using `foreground = "contrast"`, change to `foreground = "saturated"`
- If using `foreground = { dark = "contrast", light = "contrast" }`, change to `foreground = { dark = "saturated", light = "saturated" }`
2025-07-28 09:33:50 +02:00
Webhooked
925b8a2100 fix: light mode correction in init and README 2025-07-25 15:57:59 +02:00
Webhooked
024999f6f9 feat: add contrast foreground config option 2025-07-25 11:45:27 +02:00
Webhooked
138f08461f feat\!: replace disableItalics with italics config option
Replace the negative boolean `disableItalics` with positive `italics` option for better API ergonomics. This affects all italic styling throughout the theme including comments, keywords, and plugin highlights.

BREAKING CHANGE: Users must update their configuration from `disableItalics = true` to `italics = false`.
2025-05-31 14:11:00 +02:00
Webhooked
90088255f9 Add EditorConfig and standardize code formatting
Adds an EditorConfig file to maintain consistent coding styles across editors. Reformats code with consistent indentation using spaces instead of tabs. Makes minor color palette adjustments.
2025-05-26 11:01:00 +02:00
Kacper Hemperek
aaa72b68b6 Add config field to disable bold styles across the whole theme 2025-05-21 09:18:51 +02:00
Webhooked
6d7770eda6 Add option to disable italic styling 2025-05-07 11:49:57 +02:00
Webhooked
62e9c5d669 Initial commit 2025-05-06 12:02:29 +02:00