Midnight Coder

// A VS Code inspired theme for developers

const presentation = new Template();

interface Features

  • 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.

import CodeSamples;

main()

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

return 0;

Summary

Pros

  • Familiar to devs
  • High contrast
  • Clean typography

Usage

  • Tech talks
  • Workshops
  • Live coding

/* End of presentation */