It’s a lightweight Windows 11 utility that adds a colored border around the currently focused window. This makes it easy to see which window is active, especially when you have several apps open at once.
The application uses native Windows APIs, keeping it small (~3MB) and efficient.
Modern Windows styling doesn’t provide a clear or consistent indicator for the active window. When working with several apps side by side, it’s easy to start typing only to realize the input went to the wrong application.
While searching for a solution, I found JankyBorders, which works great—but it’s only available on macOS.
I couldn’t find a comparable tool for Windows. The closest option was the built-in Windows accent color feature, but it didn’t meet my needs:
- The border is too thin.
- The border color is tied to the title bar color, so changing one changes both.
- Many applications ignore the accent color entirely, leading to inconsistency.
So, I decided to spend a few fun evenings building my own solution 🙂
Default configuration file is config.toml uses TOML format. Currently allows configuration of border width and color.
[Border]
Width = 5 # in pixels
Color = 0xFFFFA500 # HEX color in ARGB
To exit application use tray icon context menu.
To build and run the project, use:
dotnet build
dotnet run To generate a standalone executable, run:
dotnet publish -c Release