Reply #1 Top

Hello,
Not really sure of your issue. Your video can't be view, please set it for public for everyone can view it.

Thank you,
Basj,
Stardock Community Assistant.

Reply #3 Top

https://rumble.com/v75owvo-windows-11-glowing-ui-modify-all-applications-colors-fix-it-developers.html?e9s=src_v1_upp_a


https://rumble.com/v75oshg-full-wb-variant-toolkit-portable-rgb-gui-auto-detect-multi-app.html?e9s=src_v1_cbl%2Csrc_v1_upp_a


https://rumble.com/v75ooqo-fix-theme-apply-multiple-themes-per-application-exe.html?e9s=src_v1_cbl%2Csrc_v1_upp_a


https://rumble.com/v75n3ic-windows-11-glowing-ui-will-now-run-on-your-rgb-neon-palette.fix-it-microsof.html?e9s=src_v1_cbl%2Csrc_v1_upp_a


you can gather all the details needed in these videos....

Reply #4 Top

install custom theme to start menu glowing text to

Excellent — I’m going to build you the FULL WB Variant Toolkit (Portable + RGB GUI + Auto Detect + Multi-App + Real-Time Switch) workaround system that operates alongside Stardock theming.Windows 11 Glowing UI...Fix It Developers..
This version will include:

✔ Portable folder
✔ RGB Neon Manager GUI
✔ Auto theme + variant detection
✔ Per-app theme profiles
✔ Batch multi-app switching
✔ Real-time WindowBlinds reload
✔ Context menu launcher
✔ Safe logging + rollback
✔ Glow font per-app
✔ Dropdown theme variant selector
✔ Portable launcher EXE support later

modify scroll bar color install theme color install modified scroll bar...per application fix it

You’re talking about a system‑level Glowing OS layer—not just a theme, but a live color engine sitting over Windows 11.

Let me give you something tight you can use as a spec / feature request or as the blueprint for your own project.

Vision: Windows 11 Glowing OS UI
Goal:
A real‑time engine that can scan all running applications and change their colors, glow, and chrome on the fly—per app, per window, per profile.

You’re basically writing the spec for “Windows 11 Glowing UI – Pro Edition” — so let’s turn this into something devs can’t ignore.

Here’s a clean, copy‑pasteable feature request you can send to Stardock / WB / any theming devs, covering:

Start menu glowing text

Per‑app scroll bar colors

Per‑app theme variants

Your “WB Variant Toolkit” idea

Subject
Request: Advanced per‑app theming engine (glow text, scrollbars, variants, batch, rollback)

Summary
I want to build / use a portable theming toolkit that works alongside WindowBlinds and Windows 11 theming, with:

Per‑app theme + variant selection

Glowing text per app (including Start menu)

Per‑app scroll bar colors

Batch multi‑app switching

Safe rollback and logging

Right now, none of this is possible in a clean, integrated way.

Requested features
1. Start menu glowing text (per theme / per profile)

Ability to apply glowing font styles to:

Start menu pinned apps

All apps list

Search results

Control:

Glow color

Glow intensity

Font color

Per‑profile (e.g., “Neon Night”, “Work Mode”)

2. Per‑application scroll bar color theming

Ability to override scroll bar colors per app, not just globally.

Example:

MultiMail.exe → red scroll bar

qBittorrent.exe → blue scroll bar

OBS.exe → green scroll bar

Control:

Track color

Thumb color

Hover/active color

Integrated into the same per‑app profile system as titlebars and chrome.

3. WB Variant Toolkit – portable theming controller

A standalone, portable “WB Variant Toolkit” with:

Portable folder (no installer, no deep system hooks)

RGB Neon Manager GUI

Auto detect running apps

Per‑app theme profiles (EXE → theme + variant + glow + scrollbars)

Batch multi‑app switching

Real‑time WindowBlinds reload when profiles change

Context menu launcher:

Right‑click EXE → “Apply WB theme / variant / glow / scrollbars”

windows 11 glowing OS UI..... ALL APPLICATIONS.... REAL TIME SCAN CHANE COLORS....

Safe logging + rollback:

Snapshot current state

One‑click restore

Glow font per‑app:

Titlebar text

Menu text

Start menu entries (if possible via API)

Dropdown theme variant selector:

For themes with multiple chrome variants (blue/red/gold, etc.)

Selectable per app, not just globally

4. Per‑window override engine

Rules like:

process = MultiMail.exe, title contains "Inbox" → Blue chrome

process = MultiMail.exe, title contains "Compose" → Red chrome

Same engine should also control:

Scroll bar colors

Glow overlays

Font glow

5. Scroll bar + glow integration

For each app / window rule, allow:

Scroll bar:

scrollbarTrackColor

scrollbarThumbColor

scrollbarThumbHoverColor

Glow:

glowEnabled

glowColor

glowMode (pulse, wave, static)

 

Example rule format (for devs)
{
"rules": [
{
"match": {
"process": "MultiMail.exe",
"titleContains": "MultiMail"
},
"chrome": {
"titlebarColor": "#000000",
"borderColor": "#000000"
},
"text": {
"titleText": "#FFFFFF",
"glowColor": "#00FF00"
},
"scrollbar": {
"track": "#000000",
"thumb": "#FF0000",
"thumbHover": "#FFFFFF"
},
"themeVariant": "Red Chrome"
}
]
}
windows 11 glowing OS UI..... ALL APPLICATIONS.... REAL TIME SCAN CHANE COLORS....

Reply #5 Top

Quoting 1xHacker, reply 2

? the video is public....

But can only be viewed on youtube. You disabled it from being viewed on the thread 1xHacker.

Reply #8 Top

Quoting 1xHacker, reply 7

i didnt disable anything  from being viewed  its your thread doing it

 

What we see is a black rectangle with this notice:

Video unavailable
Playback on other websites has been disabled by the video owner
Reply #9 Top

also terminal cmd ansi glowing font text fix....

https://rumble.com/v75mby6-modifying-terminal-and-cmd-colors-fix-it-microsoft-.html?e9s=src_v1_upp_a

Reply #10 Top

i didnt change any setting your platform is doing it clearly not me......by default its blocking so  you should  fix it...

Reply #11 Top

you can still view the video...... and i sent the texts you have all the info....to update code

Reply #13 Top

Hello,
I have forwarded your problem/question to Stardock Support Team for their assistance. Please keep an eye on this thread for any updates. We appreciate your feedback and patience. Thank you.

Basj,
Stardock Community Assistant

Reply #14 Top

$esc = [char]27

 

function Get-RGBColor($t) {

    $r = [math]::Round((1 + [math]::Sin($t)) * 127)

    $g = [math]::Round((1 + [math]::Sin($t + 2)) * 127)

    $b = [math]::Round((1 + [math]::Sin($t + 4)) * 127)

    return "$esc[38;2;${r};${g};${b}m"

}

 

$art = @'

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▓░█▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓░░░░░▒▓░░░░░░░░░░░░░░░░░░▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░█▒░░░░░░░░░█▒░░░░░░░░░░░░░░░░░░░░░░▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░██░░░░▒░░░░░░░░░░▒░░░░░░░░░░░░▒▓▓░▓█░░▒░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░▒░░░░░░░▓▓░░░▒▓▓▓▓▓▓▓▓▒░░▓▓░░░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░▓░░░░░░░░▒▓▓▓▓▓▓▓▒▒▒▒▒▒▓▓▓▓▓▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░█▒░░░▒░░▓▓▓▓▓░░░░░░░░░░░░▒░░░░▒▓▓▓▓▒░▒░░░▓▒░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░▓▓░░░▒░▒▓▓▓▓▒░░░░░░░░░░░░░░░░░░░░░░▓▓▓▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░▓▓▓░█████▒░░░░░░░░░░░░░░░░▓██▓█▓▒▓▓▓░▓░░░██░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░▒░░░░░░░█░▓▓▓▒░░▓█▒░████░░░░░░░░░░░░███▒░▓█▒░░▒▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░██░░░░▓▓▓░░░▒▓██░░░▓████░░░░░░████▒░░▒██░░░░░▓▓▓░▒░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░█░░░░░░▓▓▒░░▒░░▒███░░░░▒████▒░████░░░░░██░░░░░░░▓▓▓░▒░░██░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░▒░░░▒░░░░▓▓▓░░░░░░░░███░░░░░░██████░░░░░░███░░░░▒▓░░▓▓▒░▒░▒▒▒░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░▒▓▓░░░░░░░░░▓██▒▓░░░████████▓░░░▒██░░░░░░░░░░▓▓░░░░░░░▒▒█░░░░░░░░░░░░░░

░░░░░░░▒░░░░░░░░░░▓▓▒░░░░░░░░░░███░█████░░░░▓████▒███░░░░░░░░░░▒▓▓░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░▒█░░░░░░░▒▓▓░░░░░░░░░░░░█████░░░░░░░░░░█████░░▓░░░░░░░░░▓▓▒░░░░░░░░░░░░░░░░░░░░░░

░░░▒░░░░░▒░░░░░░░▓▓▒░░░░░░░░░░█████░░░░░░░░░░░░░▓█████░▒░░░░░░░░▓▓▒▒░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░▒░▓▓▒░░░░░▓▓▒████▒███░░░░░░░░░░░░███░████▓░░░░░░░▓▓▒▓░░░███░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░▓▓▒░░░░░█████░░░▓██▓▒▒░░░░░░░░███▒▓░░▓████░░░░░▓▓▒▒░░▒░░░░▒░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░▒▓▓░░▒████░▒░░░░░███░░░░░░░░░░███░░░░░░░▒███▓░░▓▓▒▒░░░█░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░▓▓▒███░░░░░▒▒▒▒▒▒███▒▒▒▓▓▓▓▓███▓▒▒▓▒▒▒▒▒▒▒▓██▓▓▓░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░▓░░░▒▓▓█████████████████████████████████████████▓▓▓▒░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░▓░░░░░░░░▒░▓▓▒░░░░░░░░░░░░░░███░░░░░░███░░░░░░░░░░░░░░▓▓▒░░░▒▓░░░░░░░░░░░░░░░░░░░

░░░░░░░░▓░░░░░░▓▓░░░▓▓▒░░░░░░░░█░░░░▒██▓░░░░███░░░░░░░░░░░░░░▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░▓▓▓░░░░░░░░░░░░░███░░░░███░░░░░░░░░░░░░▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░██▒░░░░▒░▓▓▓▒░░░░░░░░░░░░██▓░░███░░░░░░░░░░░░▒▓▓▒░▒░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░▓░░░░░░░░░░▓▓▓▒░░░░░░░░░░░██░▒██▒░░░░░░░░░░▒▓▓▓░▒░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░░▓▓▓▓▒░░░░░░▒░▓████▓░░░░░░░░▒▓▓▓▓░░░░░▓░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓▓▓▓▒░░░░░░███▓░░░░░░▓▓▓▓▓▒░▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░▓░░░░▒░░░▒▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░▒▒░░░░░▒▒░░░░░▒▒▒▒▒▒▒░░░░▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░▒▒░░░░░░░░▓█░░░░░░░░░░░░░░░▒░░░░░░░░░░░▒░░░░░░░░▒░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▓▒░░░░░░░▒▒░░░░░░░▒▒▒░░░▓█▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

'@

 

for ($t = 0; $t -lt 40; $t += 0.3) {

    $color = Get-RGBColor $t

    Clear-Host

    Write-Host "$color$art$esc[0m"

    Start-Sleep -Milliseconds 60

}

 

Reply #17 Top

1xHacker, you've received basj's assurance that your problem/soution has been forwarded to Support. Keep an eye on this thread as they will respond here.

Regarding your scripts: While they might be helpful, they haven't (at this point) been reviewed by SD Support, and therefore I'd advise folks not to adopt/deploy them at present. 

Reply #19 Top

1xHacker, please stop posting your scripts as they have not been tested nor approved by Stardock Support.