Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>KONNGNew to Visual Studio Code? Get it now.
KONNG

KONNG

fengwei2002

|
1,347 installs
| (3) | Free
Design By https://github.com/funcdfs
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Lesser

A dark theme for VS Code, designed for JavaScript, Go, C++, Python, and Markdown.

Visual Studio Marketplace Version Visual Studio Marketplace Installs

Preview

Preview

// JavaScript
const greeting = async (name) => {
  const message = `Hello, ${name}!`;
  console.log(message);
  return { success: true, data: message };
};
# Python
def fibonacci(n: int) -> list[int]:
    """Generate fibonacci sequence."""
    seq = [0, 1]
    for _ in range(n - 2):
        seq.append(seq[-1] + seq[-2])
    return seq
// Go
func main() {
    messages := make(chan string)
    go func() { messages <- "ping" }()
    msg := <-messages
    fmt.Println(msg)
}

Installation

  1. Open Extensions in VS Code (Cmd+Shift+X / Ctrl+Shift+X)
  2. Search for lesser
  3. Click Install
  4. Select Lesser from Preferences > Color Theme

Features

  • 🎨 Carefully crafted color palette with purple accents
  • 📝 Optimized for readability in long coding sessions
  • 🔤 Enhanced Markdown syntax highlighting
  • 🌙 True dark background (#211d25)

Color Palette

Element Color
Background #211d25
Foreground #abb2bf
Accent #b2aaca
Cursor #80FFB5
Selection #be84bf
String #ce9887
Keyword #c789d6

History

Originally published as KONNG. Renamed to Lesser after losing the original publisher key.

Author

Designed by @funcdfs

License

MIT

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft