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.
Please consider leaving a review on the Visual Studio Marketplace or giving a ⭐ on GitHub.
-
Open the command input by pressing
Ctrl(⌘) + Shift + Por theF1key. -
Type «color theme» in the input field and select
Preferences: Color Themefrom the list. -
Search for
XulbuX PRO,XulbuX PRO LegacyorXulbuX VaporWaveand select one to apply it.
💡 My personal recommendation is to use XulbuX PRO for the best experience.
| Theme | Main Colors | Semantic Highlighting |
|---|---|---|
| XulbuX PRO |
|
✅ Supported |
| XulbuX PRO Legacy |
|
❌ Not Supported |
| XulbuX VaporWave |
|
❌ Not Supported |
#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;
}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);
}
}
}import random
for IDX in range(10, 0, -1):
x = random.randint(1, 10) + IDX
print(f"NUMBER: {x}")<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











