Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>Theme XulbuX PRONew to Visual Studio Code? Get it now.
Theme XulbuX PRO

Theme XulbuX PRO

XulbuX

|
1,226 installs
| (4) | Free
| Sponsor
Crisp dark-themes that use powerful colors and clear syntax highlighting.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Theme XulbuX PRO

100% FREE theme pack which focuses on CLEAR SYNTAX and BEAUTIFUL COLORS.

This Visual Studio Code extension contains three themes, which all try to make VSCode look good and provide very clear syntax highlighting.


🎨 To get a better feeling of how the themes look on the code, continue at the theme previews.


Enjoying these themes? Have suggestions?

Please consider leaving a review on the Visual Studio Marketplace or giving a ⭐ on GitHub.



Apply a Theme ⚙️

  1. Open the command input by pressing Ctrl(⌘) + Shift + P or the F1 key.

  2. Type «color theme» in the input field and select Preferences: Color Theme from the list.

  3. Search for XulbuX PRO, XulbuX PRO Legacy or XulbuX VaporWave and select one to apply it.



💡 My personal recommendation is to use XulbuX PRO for the best experience.



Theme Info 📋

Theme Main Colors Semantic Highlighting
XulbuX PRO         ✅ Supported
XulbuX PRO Legacy         ❌ Not Supported
XulbuX VaporWave         ❌ Not Supported


Theme Previews ✨

C++

             XulbuX PRO        C++ – XulbuX PRO – Syntax Highlighting

       XulbuX PRO Legacy C++ – XulbuX PRO – Syntax Highlighting

       XulbuX VaporWave  C++ – XulbuX VaporWave – Syntax Highlighting

Java

             XulbuX PRO        Java – XulbuX PRO – Syntax Highlighting

       XulbuX PRO Legacy Java – XulbuX PRO – Syntax Highlighting

       XulbuX VaporWave  Java – XulbuX VaporWave – Syntax Highlighting

Python

             XulbuX PRO        Python – XulbuX PRO – Syntax Highlighting

       XulbuX PRO Legacy Python – XulbuX PRO – Syntax Highlighting

       XulbuX VaporWave  Python – XulbuX VaporWave – Syntax Highlighting

Vue.js

             XulbuX PRO        Vue.js – XulbuX PRO – Syntax Highlighting

       XulbuX PRO Legacy Vue.js – XulbuX PRO – Syntax Highlighting

       XulbuX VaporWave  Vue.js – XulbuX VaporWave – Syntax Highlighting



Preview Code Samples 🧪

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;
}

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);
    }
  }
}

Python

import random

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

Vue.js

<template>
  <div v-for="i in 10" :key="i">
    NUMBER: {{ randNum() }}
  </div>
</template>

<script setup lang="ts">
const randNum = () => Math.floor(Math.random() * 100);
</script>




✨ Always creating more cool stuff for you! ✨ —⠀XulbuX

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