- 1. "Syntax highlighting aesthetics"
- 2. "Monospace fonts (Fira Code)"
- 3. "IDE-like status bar"
- 4. "Activity bar decoration"
// Tip: Use this for technical demos and code walkthroughs.
// A VS Code inspired theme for developers
Perfect for showing code snippets:
// Calculate Fibonacci
function fibonacci(n: number): number {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
const result = fibonacci(10);
console.log(`Result: ${result}`);
/* End of presentation */