Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>XulbuX Neon ProNew to Visual Studio Code? Get it now.
XulbuX Neon Pro

XulbuX Neon Pro

XulbuX

|
924 installs
| (4) | Free
A crisp dark-theme with powerful, pretty colors and very clear syntax highlighting.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

XulbuX Neon Pro

A THEME WHICH FOCUSES ON CLEAR SYNTAX AND BEAUTIFUL COLORS

This VisualStudioCode extension contains two themes, which both try to make VSCode look good and do very clear syntax highlighting. View on GitHub

To get a better feeling of how the themes look on the code, continue at the THEME PREVIEWS.

Apply one of the themes:

  • Open the command input: Cmd+Shift+K on macOS or Ctrl+Shift+K on Windows and Linux or F1 in general
  • Enter «color theme» in the input field and click on Preferences: Color Theme.
  • Search for the themes XulbuX Neon or XulbuX Neon Pro and select one of them by clicking on it.

COLORS

If you can't see the colored text in this table, take a look at the colors used in the theme.

XulbuX Neon XulbuX Neon Pro
rose red
hot-pink orange
heliotrope gold
mint green
neon green teal
cyan cyan
blue blue
xulbux xulbux
purple purple
pink pink

THEME PREVIEWS

XulbuX Neon:

PYTHON

Python Code Preview

JAVA

Java Code Preview

C++

C++ Code Preview

XulbuX Neon Pro:

PYTHON

Python Code Preview

JAVA

Java Code Preview

C++

C++ Code Preview



Enjoy!



Code used for theme previews

PYTHON

import random

for IDX in range(10,0,-1):
  x = random.randint(1,10) + IDX
  print(f'NUMBER: {x}')

JAVA

import java.util.Random;

public class Example {
  public static void main(String[] args) {
    Random random = new Random();
    for (int IDX = 10; IDX > 0; --IDX) {
      int x = random.nextInt(10) + 1 + IDX;
      System.out.println("NUMBER: " + x);
    }
  }
}

C++

#include <iostream>
#include <cstdlib>
#include <ctime>

int main() {
  std::srand(std::time(0));
  for (int IDX = 10; IDX > 0; --IDX) {
    int x = std::rand() % 10 + 1 + IDX;
    std::cout << "NUMBER: " << x << std::endl;
  }
  return 0;
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft