Code Screenshot

Create beautiful code screenshots with syntax highlighting, custom themes, and gradient backgrounds. Export as PNG or SVG.

14px
32px
12px
1
2
3
4
5
6
7
8function fibonacci(n) {
  if (n <= 1) return n;
  return fibonacci(n - 1) + fibonacci(n - 2);
}

// Calculate the 10th Fibonacci number
const result = fibonacci(10);
console.log(`Fibonacci(10) = ${result}`);