Skip to content
TG007 community snippet #167

color scheme switch

Change between two color schemes with /color Switch

By AndyAbnormal Added Jul 20, 2025
General IRC All snippets
mIRC script 18 lines
About this snippet

Overview

Change between two color schemes with /color Switch
Source code

mIRC script

18 lines · 490 characters
; Color scheme toggle script
; Usage: /color switch

alias color {
  if ($1 == switch) {
    if (%colorscheme == "Sh33p Dark") {
      color -s "Sh33p Light"
      set %colorscheme "Name of the color scheme"
      echo $color(notify) -a * Farbschema aktiviert "Name of the color scheme"
    }
    else {
      color -s "Sh33p Dark"
      set %colorscheme "Name of the color scheme"
      echo $color(notify) -a * Farbschema aktiviert Name "of the color scheme"
    }
  }
}
Community

Comments

Want to join the discussion? Sign in to TG007.
No comments yet. Start the discussion.