Your avatar is the first thing people notice in a chat room. On ChatNoRegister, the Powers Store offers four distinct avatar powers that transform your profile picture from a static image into a glowing, pulsing, or ghostly visual statement. Whether you want a mysterious translucent look, a breathing white aura, a deep purple energy halo, or a warm golden shimmer, there is an avatar power designed for your style.
All powers are purchased from the Powers Store inside the chat room — click the ✦ Powers button in the top bar to open it. Powers use one of two currencies: Gold (earned through regular chat activity and daily logins) or Ruby (earned through active participation and completing daily goals). Every power is a one-time purchase that stays in your inventory permanently. No subscriptions, no renewal costs, no expiry dates.
Avatar powers are mutually exclusive — only one avatar effect can be active at a time. Choose the one that best fits your look. All avatar powers stack freely with name effects, badges, and bubble effects from other categories. For name effects, see the Name Effects & Badges Guide. For bubble effects, see the Chat Bubble Effects Guide. For broadcast powers, see the Broadcast & Utility Powers Guide.
Note: The Spectrum rainbow avatar pulse is covered in the Name Effects guide since it pairs naturally with the Prism name effect. This guide focuses on Ghost Mode and the three single-colour pulse powers.
Ghost Mode transforms your avatar into a semi-transparent, slightly desaturated ghost — visible to everyone in the room as a mysterious translucent figure. It is the ultimate lurker aesthetic: present in the conversation, but ethereally faded like a spirit drifting through the room.
Ghost Mode applies two CSS properties to your avatar image in the chat feed:
In private message rows, Ghost Mode also dims the entire message row to 55% opacity with a subtle grayscale filter, giving a haunting, faded appearance throughout the conversation. The CSS implementation is:
.pwr-ghost {
opacity: 0.50 !important;
filter: grayscale(25%) brightness(1.15) !important;
transition: opacity 0.4s ease;
}
.pwr-ghost-row {
opacity: 0.55 !important;
filter: grayscale(20%) !important;
}
Ghost Mode costs 200 Gold. Open the Powers Store, find Ghost Mode, tap Buy, then Activate. The effect applies immediately to all your messages. Ghost Mode is mutually exclusive with all pulse powers — you must deactivate it before switching to Phantom Pulse, Aura Pulse, Gold Pulse, or Spectrum.
Ghost Mode appeals to users who prefer a mysterious, understated presence. Rather than drawing attention with bright glows, Ghost Mode makes you look like a phantom observer — still visible, but unmistakably different from everyone else in the feed. It pairs beautifully with the VIP Glow name effect for a complete ethereal theme.
Phantom Pulse wraps your avatar in a breathing white glow — a soft radiance that pulses in and out like a ghostly aura. It is subtle, mysterious, and unmistakably different from every other avatar effect. Where Ghost Mode makes you transparent, Phantom Pulse makes you luminous.
Phantom Pulse is a pulse-type power that applies an animated box-shadow to your avatar element. The glow cycles smoothly between two states on a 2-second ease-in-out loop:
The ease-in-out timing creates a natural breathing rhythm. The glow swells smoothly to full brightness, holds for a moment, then fades back to near-invisible before repeating.
.pwr-phantom {
animation: pwr-phantom 2s ease-in-out infinite;
}
@keyframes pwr-phantom {
0%, 100% { box-shadow: 0 0 4px rgba(255,255,255,0.15); }
50% { box-shadow: 0 0 16px rgba(255,255,255,0.9),
0 0 30px rgba(220,220,255,0.5); }
}
Phantom Pulse costs 30 Ruby — the most affordable pulse power in the store. Activate from the Powers Store. Mutually exclusive with all other avatar powers.
Aura Pulse surrounds your avatar with a deep purple energy aura — a glowing halo that breathes from a faint shimmer to a full violet radiance. It is the signature look for users who want a mystical, powerful presence that matches ChatNoRegister's purple theme.
Aura Pulse uses the same animation technique as Phantom Pulse but in deep purple (#a855f7). The box-shadow pulses between a faint 5px glow at 35% opacity and a full 20px saturated bloom plus a 38px outer halo at 50% opacity, on a 2-second ease-in-out loop.
.pwr-aura {
animation: pwr-aura 2s ease-in-out infinite;
}
@keyframes pwr-aura {
0%, 100% { box-shadow: 0 0 5px rgba(168,85,247,0.35); }
50% { box-shadow: 0 0 20px rgba(168,85,247,1.0),
0 0 38px rgba(168,85,247,0.5); }
}
Aura Pulse pairs exceptionally well with the VIP Glow name effect — both use the same purple colour palette, creating a fully coordinated purple theme across your name and avatar.
Aura Pulse costs 40 Ruby. Activate from the Powers Store. Mutually exclusive with all other avatar powers.
Gold Pulse radiates a warm golden shimmer from your avatar — cycling between a subtle glint and a rich amber radiance. It evokes wealth and prestige, and is the natural companion to the Gold Badge and Gold Bubble for a fully coordinated gold theme across your entire chat presence.
Gold Pulse uses the same animation structure as the other pulse powers, but with warm gold (rgba(255,215,0)) and amber (rgba(255,165,0)) colours. The glow pulses between a faint 5px gold glint at 35% opacity and a full 20px gold burst plus a 38px amber outer bloom at 50% opacity.
.pwr-gold-pulse {
animation: pwr-gold 2s ease-in-out infinite;
}
@keyframes pwr-gold {
0%, 100% { box-shadow: 0 0 5px rgba(255,215,0,0.35); }
50% { box-shadow: 0 0 20px rgba(255,215,0,1.0),
0 0 38px rgba(255,165,0,0.5); }
}
Gold Pulse costs 200 Gold. It is one of two avatar powers purchasable with Gold (the other being Ghost Mode). Activate from the Powers Store. Mutually exclusive with all other avatar powers.
For a complete gold theme, activate Gold Pulse alongside Gold Badge (⭐ icon next to your name) and Gold Bubble (golden shimmer on your message bubbles). All three are different power types and stack together perfectly — your name, avatar, and messages all glow gold.
Each avatar power creates a distinctly different impression. Here is a guide to help you choose:
| Power | Colour | Animation | Cost | Currency | Best Paired With |
|---|---|---|---|---|---|
| Ghost Mode | Translucent | None (static) | 200 | Gold | VIP Glow |
| Phantom Pulse | White | 2s breathing pulse | 30 | Ruby | Any name effect |
| Aura Pulse | Deep purple | 2s breathing pulse | 40 | Ruby | VIP Glow |
| Gold Pulse | Gold/amber | 2s breathing pulse | 200 | Gold | Gold Badge + Gold Bubble |
| Spectrum | Full rainbow | 3s linear cycle | 60 | Ruby | Prism |
Yes. All avatar effects are applied server-side on every message you send. When your message reaches other users' browsers, the chat engine includes the appropriate CSS class, so everyone in the room sees your glowing or ghostly avatar.
Yes. Avatar powers, name effects, badges, and bubble effects are all separate power categories that stack freely. You can have one power from each category active simultaneously — for example, Aura Pulse (avatar) + VIP Glow (name) + Crown (badge) + Bubble Glow (bubble).
Yes. All purchases are permanent. If you buy both Phantom Pulse and Aura Pulse, both stay in your inventory. You simply activate the one you want to use — the other remains available to switch to at any time.
Yes. All avatar powers use standard CSS (box-shadow animations or opacity/filter adjustments) that work on every modern mobile browser. The animations run smoothly at the browser's native frame rate.
Yes. Your avatar effect appears in all chat contexts — main room feed, private messages, and any panel showing your avatar. Ghost Mode additionally dims the entire PM row for an enhanced effect in private conversations.
No. Every avatar power is a permanent one-time purchase. Buy once, keep forever. Activate and deactivate at will from the Powers Store.
Gold is earned through regular chat activity and daily login rewards. Ruby is earned through active participation and completing daily goals. Your balances are displayed at the top of the Powers Store. See the FAQ for more details.
Ready to choose your avatar power? Enter a chat room on ChatNoRegister — no registration required — and visit the Powers Store to preview every avatar effect before you buy.
No comments yet — be the first!
Leave a Comment