New Release v1.0.1

Wise Street Theme

The ultimate fusion of SynthWave '84 text colors and Tokyo Night background.

Preview
wise-street-theme.tsx
import React from 'react';
interface ThemeProps {
name: string;
version: number;
isAwesome: boolean;
}
export default function WiseStreetTheme( props: ThemeProps) {
const { background } = useTheme();
// The perfect combination: SynthWave Text + Tokyo Night BG
return (
<div className="bg-[#1a1b26] text-[#ff7edb]">
<h1>Hello World</h1>
</div>
);
}
TSTypeScript React
Ln 14, Col 32UTF-8

Why this fusion?

SynthWave '84 Text

We kept the legendary neon text styling from SynthWave '84. The glossy, glowing effects on keywords and strings make your code pop and feel alive.

🌃

Tokyo Night Background

The background uses the deep, calming, and focused palette of Tokyo Night. It’s easier on the eyes for long coding sessions while maintaining high contrast.