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,214 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

A 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 ✨

XulbuX PRO

Python Python – XulbuX PRO – Syntax Highlighting

Java Java – XulbuX PRO – Syntax Highlighting

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

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

XulbuX PRO Legacy

Python Python – XulbuX PRO – Syntax Highlighting

Java Java – XulbuX PRO – Syntax Highlighting

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

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

XulbuX VaporWave

Python Python – XulbuX VaporWave – Syntax Highlighting

Java Java – XulbuX VaporWave – Syntax Highlighting

C++ C++ – XulbuX VaporWave – Syntax Highlighting

Vue.js Vue.js – XulbuX VaporWave – Syntax Highlighting



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

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