kawre / leetcode.nvim

A Neovim plugin enabling you to solve LeetCode problems.
MIT License
654 stars 34 forks source link

Hard to read the questions #65

Closed tokisuno closed 3 months ago

tokisuno commented 3 months ago

image

Title

kawre commented 3 months ago

I've added option to customize theme values.

In your case you would want to modify alt and normal highlights.

theme = {
    ["alt"] = {
        bg = "#FFFFFF",
    },
    ["normal"] = {
        fg = "#EA4AAA",
    },
},
tokisuno commented 3 months ago

thank you! :)