diff --git a/pesterchum-update.nsi b/pesterchum-update.nsi index a47de7c..9361c1c 100644 --- a/pesterchum-update.nsi +++ b/pesterchum-update.nsi @@ -1,9 +1,9 @@ ; The name of the installer -Name "PESTERCHUM3.14a" +Name "PESTERCHUM3.418" ; The file to write -OutFile "pesterchum3.14a.3update.exe" +OutFile "pesterchum3.418.update.exe" RequestExecutionLevel admin @@ -29,7 +29,9 @@ Section "Pesterchum" File pesterchum.exe Delete "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" + Delete "$SMPROGRAMS\Pesterchum\PesterChumDebug.lnk" CreateShortcut "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" "$INSTDIR\pesterchum.exe" + CreateShortcut "$SMPROGRAMS\Pesterchum\PesterchumDebug.lnk" "$INSTDIR\pesterchum_debug.exe" Goto done error: diff --git a/pesterchum.nsi b/pesterchum.nsi index 4274ac3..e2cbce2 100644 --- a/pesterchum.nsi +++ b/pesterchum.nsi @@ -1,9 +1,9 @@ ; The name of the installer -Name "PESTERCHUM3.14a" +Name "PESTERCHUM3.418" ; The file to write -OutFile "pesterchum3.148.2.exe" +OutFile "pesterchum3.418.exe" InstallDir C:\Pesterchum @@ -41,6 +41,7 @@ Section "Pesterchum" CreateDirectory "$SMPROGRAMS\Pesterchum" CreateShortcut "$SMPROGRAMS\Pesterchum\Pesterchum.lnk" "$INSTDIR\pesterchum.exe" + CreateShortcut "$SMPROGRAMS\Pesterchum\PesterchumDebug.lnk" "$INSTDIR\pesterchum_debug.exe" CreateShortcut "$DESKTOP\Pesterchum.lnk" "$INSTDIR\pesterchum.exe" CreateShortcut "$SMPROGRAMS\Pesterchum\Readme.lnk" "$INSTDIR\readme.txt" CreateShortcut "$SMPROGRAMS\Pesterchum\Uninstall.lnk" "$INSTDIR\uninstall.exe" diff --git a/pesterchum_debug_linux.py b/pesterchum_debug_linux.py new file mode 100644 index 0000000..ac23a85 --- /dev/null +++ b/pesterchum_debug_linux.py @@ -0,0 +1,9 @@ +# runs pesterchum but appends stdout/err to log file +import subprocess +import datetime +f = open("debug.log", 'a') +d = datetime.datetime.now() +f.write("=== PESTERCHUM DEBUG %s ===\n" % d.strftime("%m-%d-%y %H-%M")) +p = subprocess.Popen(["python", "pesterchum.py"], stdout=f, stderr=subprocess.STDOUT) +p.wait() +f.close() diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c63450d --- /dev/null +++ b/setup.py @@ -0,0 +1,45 @@ +# Windows-only cx_freeze setup file +from cx_Freeze import setup, Executable +import sys +import os +import shutil + +if sys.platform == "win32": + base = "Win32GUI" + #base = "Console" +else: + base = "Console" + +setup( + name = "PESTERCHUM", + version = "3.41", + description = "P3ST3RCHUM", + executables = [Executable("pesterchum.py", + base=base, + compress=True, + icon="pesterchum.ico", + ), + Executable("pesterchum_debug.py", + base=base, + compress=True, + icon="pesterchum.ico", + )]) +if sys.platform == "win32": + os.rename("build/exe.win32-2.6", "build/pesterchum") + +shutil.copytree("themes", "build/pesterchum/themes") +shutil.copytree("imageformats", "build/pesterchum/imageformats") +shutil.copytree("smilies", "build/pesterchum/smilies") +shutil.copy("pesterchum.js", "build/pesterchum/") +shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcm90.dll", "build/pesterchum") +shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcp90.dll", "build/pesterchum") +shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/msvcr90.dll", "build/pesterchum") +shutil.copy("C:/Dev/Py26MSdlls-9.0.21022.8/msvc/x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375.manifest", + "build/pesterchum") +shutil.copy("pesterchum.nsi", "build/pesterchum/") +shutil.copy("pesterchum-update.nsi", "build/pesterchum/") +os.mkdir("build/pesterchum/profiles") +os.mkdir("build/pesterchum/logs") +shutil.copy("logs/chums.js", "build/pesterchum/logs") +shutil.copy("readme.txt", "build/pesterchum/") +shutil.copy("themes.txt", "build/pesterchum/") diff --git a/themes/FRESHjamz/acceptant.png b/themes/FRESHjamz/acceptant.png new file mode 100644 index 0000000..6f48b7d Binary files /dev/null and b/themes/FRESHjamz/acceptant.png differ diff --git a/themes/FRESHjamz/alarm.wav b/themes/FRESHjamz/alarm.wav new file mode 100644 index 0000000..910abdc Binary files /dev/null and b/themes/FRESHjamz/alarm.wav differ diff --git a/themes/FRESHjamz/amazed.png b/themes/FRESHjamz/amazed.png new file mode 100644 index 0000000..dac9c4b Binary files /dev/null and b/themes/FRESHjamz/amazed.png differ diff --git a/themes/FRESHjamz/apple.png b/themes/FRESHjamz/apple.png new file mode 100644 index 0000000..c563d33 Binary files /dev/null and b/themes/FRESHjamz/apple.png differ diff --git a/themes/FRESHjamz/bemused.png b/themes/FRESHjamz/bemused.png new file mode 100644 index 0000000..a0b886e Binary files /dev/null and b/themes/FRESHjamz/bemused.png differ diff --git a/themes/FRESHjamz/blocked.png b/themes/FRESHjamz/blocked.png new file mode 100644 index 0000000..ba92a9d Binary files /dev/null and b/themes/FRESHjamz/blocked.png differ diff --git a/themes/FRESHjamz/chumbg.png b/themes/FRESHjamz/chumbg.png new file mode 100644 index 0000000..d704789 Binary files /dev/null and b/themes/FRESHjamz/chumbg.png differ diff --git a/themes/FRESHjamz/chumlabelbg.png b/themes/FRESHjamz/chumlabelbg.png new file mode 100644 index 0000000..1d12780 Binary files /dev/null and b/themes/FRESHjamz/chumlabelbg.png differ diff --git a/themes/FRESHjamz/chummy.png b/themes/FRESHjamz/chummy.png new file mode 100644 index 0000000..c6359d1 Binary files /dev/null and b/themes/FRESHjamz/chummy.png differ diff --git a/themes/FRESHjamz/close.png b/themes/FRESHjamz/close.png new file mode 100644 index 0000000..6d7d2a3 Binary files /dev/null and b/themes/FRESHjamz/close.png differ diff --git a/themes/FRESHjamz/detestful.png b/themes/FRESHjamz/detestful.png new file mode 100644 index 0000000..6f2e67f Binary files /dev/null and b/themes/FRESHjamz/detestful.png differ diff --git a/themes/FRESHjamz/devious.png b/themes/FRESHjamz/devious.png new file mode 100644 index 0000000..5e6f24f Binary files /dev/null and b/themes/FRESHjamz/devious.png differ diff --git a/themes/FRESHjamz/discontent.png b/themes/FRESHjamz/discontent.png new file mode 100644 index 0000000..f484118 Binary files /dev/null and b/themes/FRESHjamz/discontent.png differ diff --git a/themes/FRESHjamz/distraught.png b/themes/FRESHjamz/distraught.png new file mode 100644 index 0000000..b86f287 Binary files /dev/null and b/themes/FRESHjamz/distraught.png differ diff --git a/themes/FRESHjamz/ecstatic.png b/themes/FRESHjamz/ecstatic.png new file mode 100644 index 0000000..7a7e131 Binary files /dev/null and b/themes/FRESHjamz/ecstatic.png differ diff --git a/themes/FRESHjamz/fastforward1.png b/themes/FRESHjamz/fastforward1.png new file mode 100644 index 0000000..91a8578 Binary files /dev/null and b/themes/FRESHjamz/fastforward1.png differ diff --git a/themes/FRESHjamz/fastforward2.png b/themes/FRESHjamz/fastforward2.png new file mode 100644 index 0000000..09170b5 Binary files /dev/null and b/themes/FRESHjamz/fastforward2.png differ diff --git a/themes/FRESHjamz/fjbg.png b/themes/FRESHjamz/fjbg.png new file mode 100644 index 0000000..eef0dbd Binary files /dev/null and b/themes/FRESHjamz/fjbg.png differ diff --git a/themes/FRESHjamz/fjbg.psd b/themes/FRESHjamz/fjbg.psd new file mode 100644 index 0000000..2dded48 Binary files /dev/null and b/themes/FRESHjamz/fjbg.psd differ diff --git a/themes/FRESHjamz/insolent.png b/themes/FRESHjamz/insolent.png new file mode 100644 index 0000000..07a3611 Binary files /dev/null and b/themes/FRESHjamz/insolent.png differ diff --git a/themes/FRESHjamz/keylime.png b/themes/FRESHjamz/keylime.png new file mode 100644 index 0000000..24ede65 Binary files /dev/null and b/themes/FRESHjamz/keylime.png differ diff --git a/themes/FRESHjamz/leftarrow.png b/themes/FRESHjamz/leftarrow.png new file mode 100644 index 0000000..c16629f Binary files /dev/null and b/themes/FRESHjamz/leftarrow.png differ diff --git a/themes/FRESHjamz/lemon.png b/themes/FRESHjamz/lemon.png new file mode 100644 index 0000000..ef8bada Binary files /dev/null and b/themes/FRESHjamz/lemon.png differ diff --git a/themes/FRESHjamz/m.png b/themes/FRESHjamz/m.png new file mode 100644 index 0000000..858f2c1 Binary files /dev/null and b/themes/FRESHjamz/m.png differ diff --git a/themes/FRESHjamz/manipulative.png b/themes/FRESHjamz/manipulative.png new file mode 100644 index 0000000..dceebf1 Binary files /dev/null and b/themes/FRESHjamz/manipulative.png differ diff --git a/themes/FRESHjamz/memo.png b/themes/FRESHjamz/memo.png new file mode 100644 index 0000000..30b9631 Binary files /dev/null and b/themes/FRESHjamz/memo.png differ diff --git a/themes/FRESHjamz/mirthful.png b/themes/FRESHjamz/mirthful.png new file mode 100644 index 0000000..6ce8e6d Binary files /dev/null and b/themes/FRESHjamz/mirthful.png differ diff --git a/themes/FRESHjamz/mystified.png b/themes/FRESHjamz/mystified.png new file mode 100644 index 0000000..88e0480 Binary files /dev/null and b/themes/FRESHjamz/mystified.png differ diff --git a/themes/FRESHjamz/offline.png b/themes/FRESHjamz/offline.png new file mode 100644 index 0000000..6f7f13a Binary files /dev/null and b/themes/FRESHjamz/offline.png differ diff --git a/themes/FRESHjamz/ohgodwhat.wav b/themes/FRESHjamz/ohgodwhat.wav new file mode 100644 index 0000000..a2bb7a2 Binary files /dev/null and b/themes/FRESHjamz/ohgodwhat.wav differ diff --git a/themes/FRESHjamz/orange.png b/themes/FRESHjamz/orange.png new file mode 100644 index 0000000..7392c56 Binary files /dev/null and b/themes/FRESHjamz/orange.png differ diff --git a/themes/FRESHjamz/pause1.png b/themes/FRESHjamz/pause1.png new file mode 100644 index 0000000..5e18fe7 Binary files /dev/null and b/themes/FRESHjamz/pause1.png differ diff --git a/themes/FRESHjamz/pause2.png b/themes/FRESHjamz/pause2.png new file mode 100644 index 0000000..e38e4c4 Binary files /dev/null and b/themes/FRESHjamz/pause2.png differ diff --git a/themes/FRESHjamz/perky.png b/themes/FRESHjamz/perky.png new file mode 100644 index 0000000..41a9725 Binary files /dev/null and b/themes/FRESHjamz/perky.png differ diff --git a/themes/FRESHjamz/play1.png b/themes/FRESHjamz/play1.png new file mode 100644 index 0000000..b827719 Binary files /dev/null and b/themes/FRESHjamz/play1.png differ diff --git a/themes/FRESHjamz/play2.png b/themes/FRESHjamz/play2.png new file mode 100644 index 0000000..a63e8f8 Binary files /dev/null and b/themes/FRESHjamz/play2.png differ diff --git a/themes/FRESHjamz/pleasant.png b/themes/FRESHjamz/pleasant.png new file mode 100644 index 0000000..d8b70eb Binary files /dev/null and b/themes/FRESHjamz/pleasant.png differ diff --git a/themes/FRESHjamz/pranky.png b/themes/FRESHjamz/pranky.png new file mode 100644 index 0000000..f8c50c5 Binary files /dev/null and b/themes/FRESHjamz/pranky.png differ diff --git a/themes/FRESHjamz/protective.png b/themes/FRESHjamz/protective.png new file mode 100644 index 0000000..3135aa5 Binary files /dev/null and b/themes/FRESHjamz/protective.png differ diff --git a/themes/FRESHjamz/rancorous.png b/themes/FRESHjamz/rancorous.png new file mode 100644 index 0000000..5ed54e7 Binary files /dev/null and b/themes/FRESHjamz/rancorous.png differ diff --git a/themes/FRESHjamz/relaxed.png b/themes/FRESHjamz/relaxed.png new file mode 100644 index 0000000..fbae539 Binary files /dev/null and b/themes/FRESHjamz/relaxed.png differ diff --git a/themes/FRESHjamz/rewind1.png b/themes/FRESHjamz/rewind1.png new file mode 100644 index 0000000..87bc162 Binary files /dev/null and b/themes/FRESHjamz/rewind1.png differ diff --git a/themes/FRESHjamz/rewind2.png b/themes/FRESHjamz/rewind2.png new file mode 100644 index 0000000..2e52a88 Binary files /dev/null and b/themes/FRESHjamz/rewind2.png differ diff --git a/themes/FRESHjamz/rightarrow.png b/themes/FRESHjamz/rightarrow.png new file mode 100644 index 0000000..2225fde Binary files /dev/null and b/themes/FRESHjamz/rightarrow.png differ diff --git a/themes/FRESHjamz/sleek.png b/themes/FRESHjamz/sleek.png new file mode 100644 index 0000000..b4a9afa Binary files /dev/null and b/themes/FRESHjamz/sleek.png differ diff --git a/themes/FRESHjamz/smooth.png b/themes/FRESHjamz/smooth.png new file mode 100644 index 0000000..5651575 Binary files /dev/null and b/themes/FRESHjamz/smooth.png differ diff --git a/themes/FRESHjamz/style.js b/themes/FRESHjamz/style.js new file mode 100644 index 0000000..4b0421d --- /dev/null +++ b/themes/FRESHjamz/style.js @@ -0,0 +1,254 @@ +{"main": + {"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;", + "background-image": "$path/fjbg.png", + "size": [613, 401], + "icon": "$path/trayicon.png", + "newmsgicon": "$path/trayicon2.png", + "windowtitle": "FRESHjamz", + "close": { "image": "$path/x.png", + "size": [13, 13], + "loc": [101, 362]}, + "minimize": { "image": "$path/m.png", + "size": [13, 13], + "loc": [116, 362]}, + "menubar": { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white;" }, + "menu" : { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white; background-color: #393939; border:3px solid #797979;", + "selected": "background-color: #545454", + "menuitem": "margin-right:10px;", + "loc": [198,141] + }, + "sounds": { "alertsound": "$path/alarm.wav", + "ceasesound": "$path/ohgodwhat.wav" }, + "menus": {"client": {"_name": "Album", + "options": "Options", + "memos": "Memos", + "logviewer": "Pesterlogs", + "userlist": "Userlist", + "import": "Import", + "reconnect": "Reconnect", + "idle": "Idle", + "exit": "Exit"}, + "profile": {"_name": "Track", + "switch": "Switch", + "theme": "Theme", + "color": "Color", + "block": "Trollslum", + "quirks": "Quirks" }, + "help": { "_name": "Info", + "help": "Info", + "calsprite": "Calsprite", + "about": "About" }, + "rclickchumlist": {"pester": "Pester", + "removechum": "Remove Chum", + "blockchum": "Block", + "report": "Report", + "addchum": "Add Chum", + "viewlog": "View Pesterlog", + "unblockchum": "Unblock", + "banuser": "Ban", + "opuser": "Make OP", + "quirksoff": "Quirks Off" } + }, + "chums": { "style": "font-size: 16px; background-image:url($path/chumbg.png); background-color: #414141; background-repeat: no-repeat; font-family: 'Arial'; border: 0px; selection-background-color: #222222; color: #ff168f;", + "loc": [189, 162], + "size": [272, 170], + "userlistcolor": "#ff168f", + "moods": { + + "chummy": { "icon": "$path/chummy.png", "color": "white" }, + + "rancorous": { "icon": "$path/rancorous.png", "color": "#ff168f" }, + + "offline": { "icon": "$path/offline.png", "color": "grey"}, + + + "pleasant": { "icon": "$path/pleasant.png", "color": "white" }, + + "distraught": { "icon": "$path/distraught.png", "color": "white" }, + + "pranky": { "icon": "$path/pranky.png", "color": "white" }, + + "smooth": { "icon": "$path/smooth.png", "color": "white" }, + + + "mystified": { "icon": "$path/mystified.png", "color": "white" }, + + "amazed": { "icon": "$path/amazed.png", "color": "white" }, + + "insolent": { "icon": "$path/insolent.png", "color": "white" }, + + "bemused": { "icon": "$path/bemused.png", "color": "white" }, + + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "#ff168f" }, + + "relaxed": { "icon": "$path/relaxed.png", "color": "#ff168f" }, + + "discontent": { "icon": "$path/discontent.png", "color": "#ff168f" }, + + "devious": { "icon": "$path/devious.png", "color": "#ff168f" }, + + "sleek": { "icon": "$path/sleek.png", "color": "#ff168f" }, + + "detestful": { "icon": "$path/detestful.png", "color": "#ff168f" }, + + "mirthful": { "icon": "$path/mirthful.png", "color": "#ff168f" }, + + "manipulative": { "icon": "$path/manipulative.png", "color": "#ff168f" }, + + "vigorous": { "icon": "$path/vigorous.png", "color": "#ff168f" }, + + "perky": { "icon": "$path/perky.png", "color": "#ff168f" }, + + "acceptant": { "icon": "$path/acceptant.png", "color": "#ff168f" }, + + "protective": { "icon": "$path/protective.png", "color": "lime" }, + + "blocked": { "icon": "$path/blocked.png", "color": "#ff168f" } + + } + }, + "trollslum": { + "style": "background: black; font-family: 'Arial'; color: white;", + "size": [200, 450], + "label": { "text": "Trollslum", + "style": "color: white ; font: bold; font-family: 'Arial'; border: 0px;" }, + "chumroll": {"style": "border: 3px solid white; background-color: black; color: white; padding: 5px; font: bold; font-family: 'Arial'; selection-background-color: rgb(100,100,100);" } + }, + "mychumhandle": { "label": { "text": "", + "loc": [0,0], + "style": "color: rgba(0,0,0,0);" }, + "handle": { "style": "background: black; padding: 3px; padding-left: 26px; color: white; font-family:'Arial'; font: bold; text-align:left; font-size: 12px; border: 3px solid white;", + "loc": [0,0], + "size": [0, 0] }, + "colorswatch": { "loc": [0,0], + "size": [0,0], + "text": "" }, + "currentMood": [0, 0] + }, + "defaultwindow": { "style": "color: black; background: #797979; font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" + }, + "addchum": + { "style": "background-image:url($path/pause1.png); border:0px;", + "pressed": "background-image:url($path/pause2.png); border:0px;", + "loc": [239, 73], + "size": [55, 58], + "text": "" + }, + "pester": + { "style": "background-image:url($path/play1.png); border:0px;", + "pressed": "background-image:url($path/play2.png); border:0px;", + "loc": [180, 73], + "size": [55, 58], + "text": "" + }, + "block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);", + "loc": [0, 0], + "size": [0, 0], + "text": "" + }, + "defaultmood": 0, + "moodlabel": { "style": "", + "loc": [0, 0], + "text": "" + }, + "moods": [ + { "style": "background-image:url($path/rewind1.png); border:0px;", + "selected": "background-image:url($path/rewind2.png); border:0px;", + "loc": [298, 73], + "size": [55, 58], + "text": "", + "icon": "", + "mood": 2 + }, + { "style": "background-image:url($path/fastforward1.png); border:0px;", + "selected": "background-image:url($path/fastforward2.png); border:0px;", + "loc": [357, 73], + "size": [55, 58], + "text": "", + "icon": "", + "mood": 0 + } + ] + }, + "convo": + {"style": "background: #797979; font-family: 'Arial';", + "scrollbar": { "style" : "", "handle": "" }, + "margins": {"top": 10, "bottom": 10, "left": 10, "right": 10 }, + "size": [400, 250], + "chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:#393939; background-repeat: no-repeat; color: #ff168f; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 22, + "maxheight": 36, + "text" : "Pestering: $handle" + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 14px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" + }, + "tabwindow" : { + "style": "background: black; font-family: 'Arial'" + }, + "tabs": { + "style": "border: 2px solid white; background: black; color: white;", + "selectedstyle": "border: 3px solid white; background: white; color: black;", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "text": { + "beganpester": "began pestering", + "ceasepester": "ceased pestering", + "blocked": "blocked", + "unblocked": "unblocked", + "openmemo": "opened memo on board", + "joinmemo": "responded to memo", + "closememo": "ceased responding to memo", + "kickedmemo": "You have been banned from this memo!" + }, + "systemMsgColor": "#646464" + }, + "memos": + {"memoicon": "$path/memo.png", + "style": "background: #797979; font-family: 'Arial';", + "size": [450,300], + "tabs": { + "style": "border: 2px solid white; background: black; color: white;", + "selectedstyle": "border: 3px solid white; background: white; color: black;", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "label": { "text": "Bulletin Board: $channel", + "style": "background-image:url($path/chumlabelbg.png);background-color:#393939; background-repeat: no-repeat; color: #ff168f; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 18, + "maxheight": 18 + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 12px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; margin-bottom: 5px; " + }, + "margins": {"top": 10, "bottom": 10, "left": 9, "right": 4 }, + "userlist": { "width": 125, + "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" + }, + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + }, + "slider": { "style": " border:1px solid #c2c2c2;", + "groove": "border-image:url($path/timeslider.png);", + "handle": "image:url($path/timeicon.png);" + }, + "buttons": { "style": "border:1px solid #ff9dcf; height: 17px; width: 50px; color: white; font-family: 'Arial'; background: #ff168f; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", + "right": "$path/rightarrow.png", + "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" + } + }, + "systemMsgColor": "#646464", + "op": { "icon": "$path/smooth.png" } + } +} \ No newline at end of file diff --git a/themes/FRESHjamz/timeicon.png b/themes/FRESHjamz/timeicon.png new file mode 100644 index 0000000..2903e50 Binary files /dev/null and b/themes/FRESHjamz/timeicon.png differ diff --git a/themes/FRESHjamz/timeslider.png b/themes/FRESHjamz/timeslider.png new file mode 100644 index 0000000..f30f4cc Binary files /dev/null and b/themes/FRESHjamz/timeslider.png differ diff --git a/themes/FRESHjamz/trayicon.png b/themes/FRESHjamz/trayicon.png new file mode 100644 index 0000000..a6a1552 Binary files /dev/null and b/themes/FRESHjamz/trayicon.png differ diff --git a/themes/FRESHjamz/trayicon2.png b/themes/FRESHjamz/trayicon2.png new file mode 100644 index 0000000..c0d5ac5 Binary files /dev/null and b/themes/FRESHjamz/trayicon2.png differ diff --git a/themes/FRESHjamz/vigorous.png b/themes/FRESHjamz/vigorous.png new file mode 100644 index 0000000..e24d81d Binary files /dev/null and b/themes/FRESHjamz/vigorous.png differ diff --git a/themes/FRESHjamz/x.png b/themes/FRESHjamz/x.png new file mode 100644 index 0000000..bd31111 Binary files /dev/null and b/themes/FRESHjamz/x.png differ diff --git a/themes/Scratch/a.png b/themes/Scratch/a.png new file mode 100644 index 0000000..cd8f83d Binary files /dev/null and b/themes/Scratch/a.png differ diff --git a/themes/Scratch/acceptant.png b/themes/Scratch/acceptant.png new file mode 100644 index 0000000..6f48b7d Binary files /dev/null and b/themes/Scratch/acceptant.png differ diff --git a/themes/Scratch/amazed.png b/themes/Scratch/amazed.png new file mode 100644 index 0000000..dac9c4b Binary files /dev/null and b/themes/Scratch/amazed.png differ diff --git a/themes/Scratch/bemused.png b/themes/Scratch/bemused.png new file mode 100644 index 0000000..a0b886e Binary files /dev/null and b/themes/Scratch/bemused.png differ diff --git a/themes/Scratch/blocked.png b/themes/Scratch/blocked.png new file mode 100644 index 0000000..ba92a9d Binary files /dev/null and b/themes/Scratch/blocked.png differ diff --git a/themes/Scratch/chumlabelbg.png b/themes/Scratch/chumlabelbg.png new file mode 100644 index 0000000..1d12780 Binary files /dev/null and b/themes/Scratch/chumlabelbg.png differ diff --git a/themes/Scratch/chummy.png b/themes/Scratch/chummy.png new file mode 100644 index 0000000..c6359d1 Binary files /dev/null and b/themes/Scratch/chummy.png differ diff --git a/themes/Scratch/close.png b/themes/Scratch/close.png new file mode 100644 index 0000000..a58a89a Binary files /dev/null and b/themes/Scratch/close.png differ diff --git a/themes/Scratch/detestful.png b/themes/Scratch/detestful.png new file mode 100644 index 0000000..6f2e67f Binary files /dev/null and b/themes/Scratch/detestful.png differ diff --git a/themes/Scratch/devious.png b/themes/Scratch/devious.png new file mode 100644 index 0000000..5e6f24f Binary files /dev/null and b/themes/Scratch/devious.png differ diff --git a/themes/Scratch/discontent.png b/themes/Scratch/discontent.png new file mode 100644 index 0000000..f484118 Binary files /dev/null and b/themes/Scratch/discontent.png differ diff --git a/themes/Scratch/distraught.png b/themes/Scratch/distraught.png new file mode 100644 index 0000000..b86f287 Binary files /dev/null and b/themes/Scratch/distraught.png differ diff --git a/themes/Scratch/ecstatic.png b/themes/Scratch/ecstatic.png new file mode 100644 index 0000000..7a7e131 Binary files /dev/null and b/themes/Scratch/ecstatic.png differ diff --git a/themes/Scratch/insolent.png b/themes/Scratch/insolent.png new file mode 100644 index 0000000..07a3611 Binary files /dev/null and b/themes/Scratch/insolent.png differ diff --git a/themes/Scratch/leftarrow.png b/themes/Scratch/leftarrow.png new file mode 100644 index 0000000..0361d14 Binary files /dev/null and b/themes/Scratch/leftarrow.png differ diff --git a/themes/Scratch/m.png b/themes/Scratch/m.png new file mode 100644 index 0000000..5924246 Binary files /dev/null and b/themes/Scratch/m.png differ diff --git a/themes/Scratch/manipulative.png b/themes/Scratch/manipulative.png new file mode 100644 index 0000000..dceebf1 Binary files /dev/null and b/themes/Scratch/manipulative.png differ diff --git a/themes/Scratch/memo.png b/themes/Scratch/memo.png new file mode 100644 index 0000000..30b9631 Binary files /dev/null and b/themes/Scratch/memo.png differ diff --git a/themes/Scratch/mirthful.png b/themes/Scratch/mirthful.png new file mode 100644 index 0000000..6ce8e6d Binary files /dev/null and b/themes/Scratch/mirthful.png differ diff --git a/themes/Scratch/moods.txt b/themes/Scratch/moods.txt new file mode 100644 index 0000000..fd8eb83 --- /dev/null +++ b/themes/Scratch/moods.txt @@ -0,0 +1,43 @@ +chummy jade 0 + +rancorous karkat 1 + +offline 2 + +pleasant rose 3 + +distraught club 4 + +pranky john 5 + +smooth dave 6 + +ecstatic feferi 7 + +relaxed kanaya 8 + +discontent tavros 9 + +devious terezi 10 + +sleek sollux 11 + +detestful eridan 12 + +mirthful gamzee 13 + +manipulative vriska 14 + +vigorous equius 15 + +perky nepeta 16 + +acceptant aradia 17 + +protective doc scratch 18 + +mystified diamond 19 + +amazed heart 20 + +insolent spade 21 \ No newline at end of file diff --git a/themes/Scratch/mystified.png b/themes/Scratch/mystified.png new file mode 100644 index 0000000..88e0480 Binary files /dev/null and b/themes/Scratch/mystified.png differ diff --git a/themes/Scratch/offline.png b/themes/Scratch/offline.png new file mode 100644 index 0000000..6f7f13a Binary files /dev/null and b/themes/Scratch/offline.png differ diff --git a/themes/Scratch/offline1.png b/themes/Scratch/offline1.png new file mode 100644 index 0000000..97c2770 Binary files /dev/null and b/themes/Scratch/offline1.png differ diff --git a/themes/Scratch/p.png b/themes/Scratch/p.png new file mode 100644 index 0000000..05f13d9 Binary files /dev/null and b/themes/Scratch/p.png differ diff --git a/themes/Scratch/perky.png b/themes/Scratch/perky.png new file mode 100644 index 0000000..41a9725 Binary files /dev/null and b/themes/Scratch/perky.png differ diff --git a/themes/Scratch/pleasant.png b/themes/Scratch/pleasant.png new file mode 100644 index 0000000..d8b70eb Binary files /dev/null and b/themes/Scratch/pleasant.png differ diff --git a/themes/Scratch/pranky.png b/themes/Scratch/pranky.png new file mode 100644 index 0000000..f8c50c5 Binary files /dev/null and b/themes/Scratch/pranky.png differ diff --git a/themes/Scratch/protective.png b/themes/Scratch/protective.png new file mode 100644 index 0000000..3135aa5 Binary files /dev/null and b/themes/Scratch/protective.png differ diff --git a/themes/Scratch/rancorous.png b/themes/Scratch/rancorous.png new file mode 100644 index 0000000..5ed54e7 Binary files /dev/null and b/themes/Scratch/rancorous.png differ diff --git a/themes/Scratch/relaxed.png b/themes/Scratch/relaxed.png new file mode 100644 index 0000000..fbae539 Binary files /dev/null and b/themes/Scratch/relaxed.png differ diff --git a/themes/Scratch/rightarrow.png b/themes/Scratch/rightarrow.png new file mode 100644 index 0000000..e31f9a8 Binary files /dev/null and b/themes/Scratch/rightarrow.png differ diff --git a/themes/Scratch/scratch.wav b/themes/Scratch/scratch.wav new file mode 100644 index 0000000..1b69d26 Binary files /dev/null and b/themes/Scratch/scratch.wav differ diff --git a/themes/Scratch/scratch2.wav b/themes/Scratch/scratch2.wav new file mode 100644 index 0000000..dee5991 Binary files /dev/null and b/themes/Scratch/scratch2.wav differ diff --git a/themes/Scratch/scratchbg.png b/themes/Scratch/scratchbg.png new file mode 100644 index 0000000..cc1c81c Binary files /dev/null and b/themes/Scratch/scratchbg.png differ diff --git a/themes/Scratch/scratchbg.psd b/themes/Scratch/scratchbg.psd new file mode 100644 index 0000000..350336e Binary files /dev/null and b/themes/Scratch/scratchbg.psd differ diff --git a/themes/Scratch/shades1.png b/themes/Scratch/shades1.png new file mode 100644 index 0000000..1264ea8 Binary files /dev/null and b/themes/Scratch/shades1.png differ diff --git a/themes/Scratch/shades2.png b/themes/Scratch/shades2.png new file mode 100644 index 0000000..b6a5e70 Binary files /dev/null and b/themes/Scratch/shades2.png differ diff --git a/themes/Scratch/sleek.png b/themes/Scratch/sleek.png new file mode 100644 index 0000000..b4a9afa Binary files /dev/null and b/themes/Scratch/sleek.png differ diff --git a/themes/Scratch/smooth.png b/themes/Scratch/smooth.png new file mode 100644 index 0000000..5651575 Binary files /dev/null and b/themes/Scratch/smooth.png differ diff --git a/themes/Scratch/style.js b/themes/Scratch/style.js new file mode 100644 index 0000000..21f2283 --- /dev/null +++ b/themes/Scratch/style.js @@ -0,0 +1,252 @@ +{"main": + {"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;", + "background-image": "$path/scratchbg.png", + "size": [650, 650], + "icon": "$path/trayicon.png", + "newmsgicon": "$path/trayicon2.png", + "windowtitle": "Scratch", + "close": { "image": "$path/x.png", + "loc": [466, 54]}, + "minimize": { "image": "$path/m.png", + "loc": [450, 60]}, + "menubar": { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white;" }, + "menu" : { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white; background-color: black; border:3px solid white;", + "selected": "background-color: #545454", + "menuitem": "margin-right:10px;", + "loc": [175,53] + }, + "sounds": { "alertsound": "$path/scratch.wav", + "ceasesound": "$path/scratch2.wav" }, + "menus": {"client": {"_name": "Album", + "options": "Remix", + "memos": "Memos", + "logviewer": "Pesterlogs", + "userlist": "Cronies", + "import": "Import", + "reconnect": "Reconnect", + "idle": "Idle", + "exit": "Exit"}, + "profile": {"_name": "Track", + "switch": "Rap Name", + "theme": "Theme", + "color": "Color", + "block": "Haters", + "quirks": "Lingo" }, + "help": { "_name": "Info", + "help": "Info", + "calsprite": "Calsprite", + "about": "The Deal" }, + "rclickchumlist": {"pester": "Patronize", + "removechum": "Forget", + "report": "Tell a Coppa", + "blockchum": "Slam", + "report": "Report", + "addchum": "Add to Crew", + "viewlog": "View Pesterlog", + "unblockchum": "Rectify", + "banuser": "Banish", + "opuser": "Hype", + "quirksoff": "Lingo Off" } + }, + "chums": { "style": "font-size: 16px; background: black; border: 3px solid white; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;", + "loc": [175, 70], + "size": [302, 500], + "userlistcolor": "white", + "moods": { + + "chummy": { "icon": "$path/chummy.png", "color": "white" }, + + "rancorous": { "icon": "$path/rancorous.png", "color": "white" }, + + "offline": { "icon": "$path/offline.png", "color": "grey"}, + + + "pleasant": { "icon": "$path/pleasant.png", "color": "white" }, + + "distraught": { "icon": "$path/distraught.png", "color": "white" }, + + "pranky": { "icon": "$path/pranky.png", "color": "white" }, + + "smooth": { "icon": "$path/smooth.png", "color": "white" }, + + + "mystified": { "icon": "$path/mystified.png", "color": "white" }, + + "amazed": { "icon": "$path/amazed.png", "color": "white" }, + + "insolent": { "icon": "$path/insolent.png", "color": "white" }, + + "bemused": { "icon": "$path/bemused.png", "color": "white" }, + + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "red" }, + + "relaxed": { "icon": "$path/relaxed.png", "color": "red" }, + + "discontent": { "icon": "$path/discontent.png", "color": "red" }, + + "devious": { "icon": "$path/devious.png", "color": "red" }, + + "sleek": { "icon": "$path/sleek.png", "color": "red" }, + + "detestful": { "icon": "$path/detestful.png", "color": "red" }, + + "mirthful": { "icon": "$path/mirthful.png", "color": "red" }, + + "manipulative": { "icon": "$path/manipulative.png", "color": "red" }, + + "vigorous": { "icon": "$path/vigorous.png", "color": "red" }, + + "perky": { "icon": "$path/perky.png", "color": "red" }, + + "acceptant": { "icon": "$path/acceptant.png", "color": "red" }, + + "protective": { "icon": "$path/protective.png", "color": "lime" }, + + "blocked": { "icon": "$path/blocked.png", "color": "red" } + + } + }, + "trollslum": { + "style": "background: black; font-family: 'Arial'; color: white;", + "size": [200, 450], + "label": { "text": "Trollslum", + "style": "color: white ; font: bold; font-family: 'Arial'; border: 0px;" }, + "chumroll": {"style": "border: 3px solid white; background-color: black; color: white; padding: 5px; font: bold; font-family: 'Arial'; selection-background-color: rgb(100,100,100);" } + }, + "mychumhandle": { "label": { "text": "", + "loc": [0,0], + "style": "color: rgba(0,0,0,0);" }, + "handle": { "style": "background: black; padding: 3px; padding-left: 26px; color: white; font-family:'Arial'; font: bold; text-align:left; font-size: 12px; border: 3px solid white;", + "loc": [0,0], + "size": [0, 0] }, + "colorswatch": { "loc": [0,0], + "size": [0,0], + "text": "" }, + "currentMood": [0, 0] + }, + "defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" + }, + "addchum": + { "style": "background-image:url($path/a.png); border:0px;", + "loc": [434, 55], + "size": [8, 8], + "text": "" + }, + "pester": + { "style": "background: rgba(0,0,0,0); border:0px;", + "loc": [0, 0], + "size": [0, 0], + "text": "" + }, + "block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);", + "loc": [0, 0], + "size": [0, 0], + "text": "" + }, + "defaultmood": 6, + "moodlabel": { "style": "", + "loc": [0, 0], + "text": "" + }, + "moods": [ + { "style": "background-image:url($path/shades1.png); border:0px;", + "selected": "background-image:url($path/shades2.png); border:0px;", + "loc": [268, 580], + "size": [104, 37], + "text": "", + "icon": "", + "mood": 6 + }, + { "style": "background-image:url($path/offline1.png); border:0px;", + "selected": "background-image:url($path/offline1.png); border:0px;", + "loc": [382, 580], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 2 + } + ] + }, + "convo": + {"style": "background: black; font-family: 'Arial';", + "scrollbar": { "style" : "", "handle": "" }, + "margins": {"top": 10, "bottom": 10, "left": 10, "right": 10 }, + "size": [400, 250], + "size": [400, 250], + "chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:rgb(180,0,0); background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 22, + "maxheight": 36, + "text" : "Pestering: $handle" + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 14px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" + }, + "tabwindow" : { + "style": "background: black; font-family: 'Arial'" + }, + "tabs": { + "style": "border: 2px solid white; background: black; color: white;", + "selectedstyle": "border: 3px solid white; background: white; color: black;", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "text": { + "beganpester": "began pestering", + "ceasepester": "ceased pestering", + "blocked": "blocked", + "unblocked": "unblocked", + "openmemo": "opened memo on board", + "joinmemo": "responded to memo", + "closememo": "ceased responding to memo", + "kickedmemo": "You have been banned from this memo!" + }, + "systemMsgColor": "#646464" + }, + "memos": + {"memoicon": "$path/memo.png", + "style": "background: black; font-family: 'Arial';", + "size": [450,300], + "tabs": { + "style": "border: 2px solid white; background: black; color: white;", + "selectedstyle": "border: 3px solid white; background: white; color: black;", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "label": { "text": "Bulletin Board: $channel", + "style": "background-image:url($path/chumlabelbg.png);background-color:rgb(180,0,0); background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 18, + "maxheight": 18 + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 12px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; margin-bottom: 5px; " + }, + "margins": {"top": 10, "bottom": 10, "left": 9, "right": 4 }, + "userlist": { "width": 125, + "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" + }, + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + }, + "slider": { "style": " border:1px solid #c2c2c2;", + "groove": "border-image:url($path/timeslider.png);", + "handle": "image:url($path/timeicon.png);" + }, + "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", + "right": "$path/rightarrow.png", + "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" + } + }, + "systemMsgColor": "#646464", + "op": { "icon": "$path/smooth.png" } + } +} \ No newline at end of file diff --git a/themes/Scratch/timeicon.png b/themes/Scratch/timeicon.png new file mode 100644 index 0000000..b904542 Binary files /dev/null and b/themes/Scratch/timeicon.png differ diff --git a/themes/Scratch/timeslider.png b/themes/Scratch/timeslider.png new file mode 100644 index 0000000..95b202e Binary files /dev/null and b/themes/Scratch/timeslider.png differ diff --git a/themes/Scratch/trayicon.png b/themes/Scratch/trayicon.png new file mode 100644 index 0000000..601ab3d Binary files /dev/null and b/themes/Scratch/trayicon.png differ diff --git a/themes/Scratch/trayicon2.png b/themes/Scratch/trayicon2.png new file mode 100644 index 0000000..2dd764d Binary files /dev/null and b/themes/Scratch/trayicon2.png differ diff --git a/themes/Scratch/vigorous.png b/themes/Scratch/vigorous.png new file mode 100644 index 0000000..e24d81d Binary files /dev/null and b/themes/Scratch/vigorous.png differ diff --git a/themes/Scratch/x.png b/themes/Scratch/x.png new file mode 100644 index 0000000..a3576c3 Binary files /dev/null and b/themes/Scratch/x.png differ diff --git a/themes/Teal Trollian/abouticon.png b/themes/Teal Trollian/abouticon.png new file mode 100644 index 0000000..e3feb2c Binary files /dev/null and b/themes/Teal Trollian/abouticon.png differ diff --git a/themes/Teal Trollian/acceptant.png b/themes/Teal Trollian/acceptant.png new file mode 100644 index 0000000..fdc482b Binary files /dev/null and b/themes/Teal Trollian/acceptant.png differ diff --git a/themes/Teal Trollian/alarm.wav b/themes/Teal Trollian/alarm.wav new file mode 100644 index 0000000..910abdc Binary files /dev/null and b/themes/Teal Trollian/alarm.wav differ diff --git a/themes/Teal Trollian/alarm2.wav b/themes/Teal Trollian/alarm2.wav new file mode 100644 index 0000000..5ae54fa Binary files /dev/null and b/themes/Teal Trollian/alarm2.wav differ diff --git a/themes/Teal Trollian/aquaicon.png b/themes/Teal Trollian/aquaicon.png new file mode 100644 index 0000000..77c0357 Binary files /dev/null and b/themes/Teal Trollian/aquaicon.png differ diff --git a/themes/Teal Trollian/blocked.png b/themes/Teal Trollian/blocked.png new file mode 100644 index 0000000..ba92a9d Binary files /dev/null and b/themes/Teal Trollian/blocked.png differ diff --git a/themes/Teal Trollian/canonchums.txt b/themes/Teal Trollian/canonchums.txt new file mode 100644 index 0000000..38b497c --- /dev/null +++ b/themes/Teal Trollian/canonchums.txt @@ -0,0 +1 @@ +["ectoBiologist", "tentacleTherapist", "turntechGodhead", "gardenGnostic", "carcinoGeneticist", "terminallyCapricious", "cuttlefishCuller", "apocalypseArisen", "arachnidsGrip", "gallowsCalibrator", "arsenicCatnip", "adiosToreador", "caligulasAquarium", "centaursTesticle", "grimAuxiliatrix", "twinArmageddons"] \ No newline at end of file diff --git a/themes/Teal Trollian/cease.wav b/themes/Teal Trollian/cease.wav new file mode 100644 index 0000000..4169e12 Binary files /dev/null and b/themes/Teal Trollian/cease.wav differ diff --git a/themes/Teal Trollian/chumlabelbg.png b/themes/Teal Trollian/chumlabelbg.png new file mode 100644 index 0000000..1d12780 Binary files /dev/null and b/themes/Teal Trollian/chumlabelbg.png differ diff --git a/themes/Teal Trollian/chummy.png b/themes/Teal Trollian/chummy.png new file mode 100644 index 0000000..2903e50 Binary files /dev/null and b/themes/Teal Trollian/chummy.png differ diff --git a/themes/Teal Trollian/close.png b/themes/Teal Trollian/close.png new file mode 100644 index 0000000..f8974d0 Binary files /dev/null and b/themes/Teal Trollian/close.png differ diff --git a/themes/Teal Trollian/detestful.png b/themes/Teal Trollian/detestful.png new file mode 100644 index 0000000..9681d6e Binary files /dev/null and b/themes/Teal Trollian/detestful.png differ diff --git a/themes/Teal Trollian/devious.png b/themes/Teal Trollian/devious.png new file mode 100644 index 0000000..a8f7ad9 Binary files /dev/null and b/themes/Teal Trollian/devious.png differ diff --git a/themes/Teal Trollian/discontent.png b/themes/Teal Trollian/discontent.png new file mode 100644 index 0000000..e4c9792 Binary files /dev/null and b/themes/Teal Trollian/discontent.png differ diff --git a/themes/Teal Trollian/distraught.png b/themes/Teal Trollian/distraught.png new file mode 100644 index 0000000..458ea85 Binary files /dev/null and b/themes/Teal Trollian/distraught.png differ diff --git a/themes/Teal Trollian/ecstatic.png b/themes/Teal Trollian/ecstatic.png new file mode 100644 index 0000000..4996fd7 Binary files /dev/null and b/themes/Teal Trollian/ecstatic.png differ diff --git a/themes/Teal Trollian/go.png b/themes/Teal Trollian/go.png new file mode 100644 index 0000000..603ae88 Binary files /dev/null and b/themes/Teal Trollian/go.png differ diff --git a/themes/Teal Trollian/h.png b/themes/Teal Trollian/h.png new file mode 100644 index 0000000..26bcdd5 Binary files /dev/null and b/themes/Teal Trollian/h.png differ diff --git a/themes/Teal Trollian/leftarrow.png b/themes/Teal Trollian/leftarrow.png new file mode 100644 index 0000000..46c2de0 Binary files /dev/null and b/themes/Teal Trollian/leftarrow.png differ diff --git a/themes/Teal Trollian/m.png b/themes/Teal Trollian/m.png new file mode 100644 index 0000000..99c8fac Binary files /dev/null and b/themes/Teal Trollian/m.png differ diff --git a/themes/Teal Trollian/manipulative.png b/themes/Teal Trollian/manipulative.png new file mode 100644 index 0000000..9fc9118 Binary files /dev/null and b/themes/Teal Trollian/manipulative.png differ diff --git a/themes/Teal Trollian/memo.png b/themes/Teal Trollian/memo.png new file mode 100644 index 0000000..30b9631 Binary files /dev/null and b/themes/Teal Trollian/memo.png differ diff --git a/themes/Teal Trollian/mirthful.png b/themes/Teal Trollian/mirthful.png new file mode 100644 index 0000000..ee731a4 Binary files /dev/null and b/themes/Teal Trollian/mirthful.png differ diff --git a/themes/Teal Trollian/moodcheck1.png b/themes/Teal Trollian/moodcheck1.png new file mode 100644 index 0000000..121b5d9 Binary files /dev/null and b/themes/Teal Trollian/moodcheck1.png differ diff --git a/themes/Teal Trollian/moodcheck10.png b/themes/Teal Trollian/moodcheck10.png new file mode 100644 index 0000000..381b192 Binary files /dev/null and b/themes/Teal Trollian/moodcheck10.png differ diff --git a/themes/Teal Trollian/moodcheck11.png b/themes/Teal Trollian/moodcheck11.png new file mode 100644 index 0000000..acf46b9 Binary files /dev/null and b/themes/Teal Trollian/moodcheck11.png differ diff --git a/themes/Teal Trollian/moodcheck12.png b/themes/Teal Trollian/moodcheck12.png new file mode 100644 index 0000000..8b19362 Binary files /dev/null and b/themes/Teal Trollian/moodcheck12.png differ diff --git a/themes/Teal Trollian/moodcheck2.png b/themes/Teal Trollian/moodcheck2.png new file mode 100644 index 0000000..eba1b5e Binary files /dev/null and b/themes/Teal Trollian/moodcheck2.png differ diff --git a/themes/Teal Trollian/moodcheck3.png b/themes/Teal Trollian/moodcheck3.png new file mode 100644 index 0000000..a9fec2e Binary files /dev/null and b/themes/Teal Trollian/moodcheck3.png differ diff --git a/themes/Teal Trollian/moodcheck4.png b/themes/Teal Trollian/moodcheck4.png new file mode 100644 index 0000000..02acef5 Binary files /dev/null and b/themes/Teal Trollian/moodcheck4.png differ diff --git a/themes/Teal Trollian/moodcheck5.png b/themes/Teal Trollian/moodcheck5.png new file mode 100644 index 0000000..d5855bc Binary files /dev/null and b/themes/Teal Trollian/moodcheck5.png differ diff --git a/themes/Teal Trollian/moodcheck6.png b/themes/Teal Trollian/moodcheck6.png new file mode 100644 index 0000000..eacc11f Binary files /dev/null and b/themes/Teal Trollian/moodcheck6.png differ diff --git a/themes/Teal Trollian/moodcheck7.png b/themes/Teal Trollian/moodcheck7.png new file mode 100644 index 0000000..53275b8 Binary files /dev/null and b/themes/Teal Trollian/moodcheck7.png differ diff --git a/themes/Teal Trollian/moodcheck8.png b/themes/Teal Trollian/moodcheck8.png new file mode 100644 index 0000000..b014b2a Binary files /dev/null and b/themes/Teal Trollian/moodcheck8.png differ diff --git a/themes/Teal Trollian/moodcheck9.png b/themes/Teal Trollian/moodcheck9.png new file mode 100644 index 0000000..97cab63 Binary files /dev/null and b/themes/Teal Trollian/moodcheck9.png differ diff --git a/themes/Teal Trollian/moodicon.psd b/themes/Teal Trollian/moodicon.psd new file mode 100644 index 0000000..f79e0aa Binary files /dev/null and b/themes/Teal Trollian/moodicon.psd differ diff --git a/themes/Teal Trollian/moods.txt b/themes/Teal Trollian/moods.txt new file mode 100644 index 0000000..1c87873 --- /dev/null +++ b/themes/Teal Trollian/moods.txt @@ -0,0 +1,35 @@ +chummy jade 0 + +pleasant rose 3 + +pranky john 5 + +smooth dave 6 + +rancorous karkat 1 + +ecstatic feferi 7 + +relaxed kanaya 8 + +discontent tavros 9 + +devious terezi 10 + +sleek sollux 11 + +detestful eridan 12 + +mirthful gamzee 13 + +manipulative vriska 14 + +vigorous equius 15 + +perky nepeta 16 + +acceptant aradia 17 + +protective doc scratch 18 + +offline 2 \ No newline at end of file diff --git a/themes/Teal Trollian/offline.png b/themes/Teal Trollian/offline.png new file mode 100644 index 0000000..aaa4b92 Binary files /dev/null and b/themes/Teal Trollian/offline.png differ diff --git a/themes/Teal Trollian/op.png b/themes/Teal Trollian/op.png new file mode 100644 index 0000000..0d500ae Binary files /dev/null and b/themes/Teal Trollian/op.png differ diff --git a/themes/Teal Trollian/perky.png b/themes/Teal Trollian/perky.png new file mode 100644 index 0000000..252377d Binary files /dev/null and b/themes/Teal Trollian/perky.png differ diff --git a/themes/Teal Trollian/pleasant.png b/themes/Teal Trollian/pleasant.png new file mode 100644 index 0000000..8512ca0 Binary files /dev/null and b/themes/Teal Trollian/pleasant.png differ diff --git a/themes/Teal Trollian/pranky.png b/themes/Teal Trollian/pranky.png new file mode 100644 index 0000000..4b5284b Binary files /dev/null and b/themes/Teal Trollian/pranky.png differ diff --git a/themes/Teal Trollian/protective.png b/themes/Teal Trollian/protective.png new file mode 100644 index 0000000..aedba54 Binary files /dev/null and b/themes/Teal Trollian/protective.png differ diff --git a/themes/Teal Trollian/rancorous.png b/themes/Teal Trollian/rancorous.png new file mode 100644 index 0000000..beb09d7 Binary files /dev/null and b/themes/Teal Trollian/rancorous.png differ diff --git a/themes/Teal Trollian/relaxed.png b/themes/Teal Trollian/relaxed.png new file mode 100644 index 0000000..08f11a0 Binary files /dev/null and b/themes/Teal Trollian/relaxed.png differ diff --git a/themes/Teal Trollian/rightarrow.png b/themes/Teal Trollian/rightarrow.png new file mode 100644 index 0000000..1c177c2 Binary files /dev/null and b/themes/Teal Trollian/rightarrow.png differ diff --git a/themes/Teal Trollian/sleek.png b/themes/Teal Trollian/sleek.png new file mode 100644 index 0000000..7c8f4d9 Binary files /dev/null and b/themes/Teal Trollian/sleek.png differ diff --git a/themes/Teal Trollian/smooth.png b/themes/Teal Trollian/smooth.png new file mode 100644 index 0000000..2fc7991 Binary files /dev/null and b/themes/Teal Trollian/smooth.png differ diff --git a/themes/Teal Trollian/style.js b/themes/Teal Trollian/style.js new file mode 100644 index 0000000..73e6e1d --- /dev/null +++ b/themes/Teal Trollian/style.js @@ -0,0 +1,329 @@ +{"main": + {"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;", + "background-image": "$path/tnbg2.png", + "size": [650, 450], + "icon": "$path/trayicon.png", + "newmsgicon": "$path/trayicon2.png", + "windowtitle": "TROLLIAN", + "close": { "image": "$path/x.png", + "loc": [635, 2]}, + "minimize": { "image": "$path/m.png", + "loc": [621, 8]}, + "menubar": { "style": "font-family: 'Arial'; font-size: 11px; color: rgba(0,0,0,0);" }, + "menu" : { "style": "font-family: 'Arial'; font-size: 11px; background-color: #c2c2c2; border:1px solid #545454;", + "selected": "background-color: #545454", + "menuitem": "margin-right:14px;", + "loc": [14,90] + }, + "sounds": { "alertsound": "$path/alarm.wav" }, + "menus": {"client": {"_name": "Trollian", + "options": "Options", + "memos": "Memos", + "userlist": "Fresh Targets", + "import": "import U2;", + "idle": "Idle", + "exit": "Abscond"}, + "profile": {"_name": "View", + "switch": "Trolltag", + "theme": "Theme", + "color": "Hemospectrum", + "block": "Chumpdump", + "quirks": "Annoying" }, + "help": { "_name": "Help", + "about": "About" }, + "rclickchumlist": {"pester": "Troll", + "removechum": "Trash", + "blockchum": "Block", + "addchum": "Add Chump", + "unblockchum": "Mercy", + "banuser": "Ban", + "opuser": "Promote", + "quirksoff": "Quirks Off" } + }, + "chums": { "style": "font-size: 12px; background: white; border:0px; font-family: 'Arial';selection-background-color:rgb(200,200,200); ", + "scrollbar": { "style" : "background-color:#c2c2c2;", + "handle": "background-color:#13cae0;height:20px;border:2px solid #12c4ff;", + "downarrow": "", + "darrowstyle": "", + "uparrow": "", + "uarrowstyle": "" + }, + "loc": [477, 91], + "size": [171, 357], + "userlistcolor": "black", + "moods": { + + "chummy": { "icon": "$path/chummy.png", "color": "#63ea00" }, + + "rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" }, + + "offline": { "icon": "$path/offline.png", "color": "black"}, + + + "pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" }, + + "distraught": { "icon": "$path/distraught.png", "color": "#706eba" }, + + "pranky": { "icon": "$path/pranky.png", "color": "blue" }, + + + "smooth": { "icon": "$path/smooth.png", "color": "red" }, + + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" }, + + "relaxed": { "icon": "$path/relaxed.png", "color": "#078446" }, + + "discontent": { "icon": "$path/discontent.png", "color": "#a75403" }, + + "devious": { "icon": "$path/devious.png", "color": "#008282" }, + + "sleek": { "icon": "$path/sleek.png", "color": "#a1a100" }, + + "detestful": { "icon": "$path/detestful.png", "color": "#6a006a" }, + + "mirthful": { "icon": "$path/mirthful.png", "color": "#450077" }, + + "manipulative": { "icon": "$path/manipulative.png", "color": "#004182" }, + + "vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" }, + + "perky": { "icon": "$path/perky.png", "color": "#406600" }, + + "acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" }, + + "protective": { "icon": "$path/protective.png", "color": "white" }, + + "blocked": { "icon": "$path/blocked.png", "color": "black" } + + } + }, + "trollslum": { + "style": "background: rgb(190, 19, 4); font-family: 'Arial'", + "size": [175, 461], + "label": { "text": "Chumpdump", + "style": "color: rgba(0, 0, 0, 100%) ;font:bold; font-family: 'Arial';border: 0px;" }, + "chumroll": {"style": "border: 0px; background-color: white; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200); " } + }, + "mychumhandle": { "label": { "text": "", + "loc": [0,0], + "style": "color:rgba(0,0,0,0);" }, + "handle": { "style": "background: rgba(0,0,0,0); color:rgba(0,0,0,0);", + "loc": [0,0], + "size": [0,0] }, + "colorswatch": { "loc": [0,0], + "size": [0,0], + "text": "" } + }, + "defaultwindow": { "style": "background: #c2c2c2; font-family:'Arial';font:bold;selection-background-color:#545454; " + }, + "addchum": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);", + "loc": [475, 67], + "size": [175, 18], + "text": "" + }, + "pester": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);", + "loc": [0,0], + "size": [0, 0], + "text": "" + }, + "block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);", + "loc": [1500,202], + "size": [71, 22], + "text": "" + }, + "defaultmood": 10, + "moodlabel": { "style": "", + "loc": [0, 0], + "text": "" + }, + "moods": [ + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck1.png); border:0px;", + "loc": [25, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 17 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck2.png); border:0px;", + "loc": [60, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 9 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck3.png); border:0px;", + "loc": [95, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 11 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck4.png); border:0px;", + "loc": [130, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 1 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck5.png); border:0px;", + "loc": [165, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 16 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck6.png); border:0px;", + "loc": [200, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 8 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck7.png); border:0px;", + "loc": [235, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 10 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck8.png); border:0px;", + "loc": [270, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 14 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck9.png); border:0px;", + "loc": [305, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 15 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck10.png); border:0px;", + "loc": [340, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 13 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck11.png); border:0px;", + "loc": [375, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 12 + }, + { "style": "border:0px;", + "selected": "background-image:url($path/moodcheck12.png); border:0px;", + "loc": [410, 141], + "size": [20, 270], + "text": "", + "icon": "", + "mood": 7 + }, + + { "style": "border:0px;color: rgba(0, 0, 0, 0%);", + "selected": "border:0px; color: rgba(0, 0, 0, 0%);", + "loc": [12, 117], + "size": [435, 18], + "text": "", + "icon": "", + "mood": 2 + } + ] + }, + "convo": + {"style": "background: #04a6be; font-family: 'Arial';", + "scrollbar": { "style" : "", "handle": "" }, + "margins": {"top": 22, "bottom": 9, "left": 10, "right": 4 }, + "size": [400, 250], + "size": [400, 250], + "chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:#12e6ff; background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 22, + "maxheight": 36, + "text" : "trolling: $handle" + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 14px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; margin-right: 54px; font-size: 12px; height: 19px;" + }, + "tabwindow" : { + "style": "background: rgb(190, 19, 4); font-family: 'Arial'" + }, + "tabs": { + "style": "", + "selectedstyle": "", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "text": { + "beganpester": "began trolling", + "ceasepester": "gave up trolling", + "blocked": "blocked", + "unblocked": "mercifully forgave", + "openmemo": "opened memo on board", + "joinmemo": "responded to memo", + "closememo": "ceased responding to memo", + "kickedmemo": "You have been banned from this memo!" + }, + "systemMsgColor": "#646464" + }, + "memos": + {"memoicon": "$path/memo.png", + "style": "background-color: #04a6be; font-family: 'Arial';", + "size": [450,300], + "tabs": { + "style": "", + "selectedstyle": "", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "label": { "text": "Bulletin Board: $channel", + "style": "background-image:url($path/chumlabelbg.png);background-color:#12e6ff; background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 18, + "maxheight": 36 + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 12px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; height: 19px; margin-bottom: 5px; " + }, + "margins": {"top": 22, "bottom": 10, "left": 9, "right": 4 }, + "userlist": { "width": 125, + "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" + }, + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + }, + "slider": { "style": " border:1px solid #c2c2c2;", + "groove": "border-image:url($path/timeslider.png);", + "handle": "image:url($path/aquaicon.png);" + }, + "buttons": { "style": "border:1px solid #68a1a6; height: 17px; width: 50px; color: #8fc6cd; font-family: 'Arial'; background: #04a6be; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", + "right": "$path/rightarrow.png", + "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" + } + }, + "systemMsgColor": "#646464", + "op": { "icon": "$path/op.png" } + } +} \ No newline at end of file diff --git a/themes/Teal Trollian/timeslider.png b/themes/Teal Trollian/timeslider.png new file mode 100644 index 0000000..ac2118a Binary files /dev/null and b/themes/Teal Trollian/timeslider.png differ diff --git a/themes/Teal Trollian/tnbg2.png b/themes/Teal Trollian/tnbg2.png new file mode 100644 index 0000000..334952c Binary files /dev/null and b/themes/Teal Trollian/tnbg2.png differ diff --git a/themes/Teal Trollian/trayicon.png b/themes/Teal Trollian/trayicon.png new file mode 100644 index 0000000..84d1156 Binary files /dev/null and b/themes/Teal Trollian/trayicon.png differ diff --git a/themes/Teal Trollian/trayicon2.png b/themes/Teal Trollian/trayicon2.png new file mode 100644 index 0000000..31f7d29 Binary files /dev/null and b/themes/Teal Trollian/trayicon2.png differ diff --git a/themes/Teal Trollian/trollian.psd b/themes/Teal Trollian/trollian.psd new file mode 100644 index 0000000..255f683 Binary files /dev/null and b/themes/Teal Trollian/trollian.psd differ diff --git a/themes/Teal Trollian/unruly.png b/themes/Teal Trollian/unruly.png new file mode 100644 index 0000000..4b5284b Binary files /dev/null and b/themes/Teal Trollian/unruly.png differ diff --git a/themes/Teal Trollian/vigorous.png b/themes/Teal Trollian/vigorous.png new file mode 100644 index 0000000..715dbfd Binary files /dev/null and b/themes/Teal Trollian/vigorous.png differ diff --git a/themes/Teal Trollian/x.png b/themes/Teal Trollian/x.png new file mode 100644 index 0000000..ab46837 Binary files /dev/null and b/themes/Teal Trollian/x.png differ diff --git a/themes/Zodiac/abouticon.png b/themes/Zodiac/abouticon.png new file mode 100644 index 0000000..e3feb2c Binary files /dev/null and b/themes/Zodiac/abouticon.png differ diff --git a/themes/Zodiac/acceptant.png b/themes/Zodiac/acceptant.png new file mode 100644 index 0000000..6f48b7d Binary files /dev/null and b/themes/Zodiac/acceptant.png differ diff --git a/themes/Zodiac/addchum1.png b/themes/Zodiac/addchum1.png new file mode 100644 index 0000000..43fb3d9 Binary files /dev/null and b/themes/Zodiac/addchum1.png differ diff --git a/themes/Zodiac/addchum2.png b/themes/Zodiac/addchum2.png new file mode 100644 index 0000000..2446590 Binary files /dev/null and b/themes/Zodiac/addchum2.png differ diff --git a/themes/Zodiac/alarm.wav b/themes/Zodiac/alarm.wav new file mode 100644 index 0000000..910abdc Binary files /dev/null and b/themes/Zodiac/alarm.wav differ diff --git a/themes/Zodiac/amazed.png b/themes/Zodiac/amazed.png new file mode 100644 index 0000000..dac9c4b Binary files /dev/null and b/themes/Zodiac/amazed.png differ diff --git a/themes/Zodiac/aquarius1.png b/themes/Zodiac/aquarius1.png new file mode 100644 index 0000000..929e953 Binary files /dev/null and b/themes/Zodiac/aquarius1.png differ diff --git a/themes/Zodiac/aquarius2.png b/themes/Zodiac/aquarius2.png new file mode 100644 index 0000000..51af0cf Binary files /dev/null and b/themes/Zodiac/aquarius2.png differ diff --git a/themes/Zodiac/aries1.png b/themes/Zodiac/aries1.png new file mode 100644 index 0000000..1a6f57f Binary files /dev/null and b/themes/Zodiac/aries1.png differ diff --git a/themes/Zodiac/aries2.png b/themes/Zodiac/aries2.png new file mode 100644 index 0000000..72de76e Binary files /dev/null and b/themes/Zodiac/aries2.png differ diff --git a/themes/Zodiac/bec1.png b/themes/Zodiac/bec1.png new file mode 100644 index 0000000..7ff7b55 Binary files /dev/null and b/themes/Zodiac/bec1.png differ diff --git a/themes/Zodiac/bec2.png b/themes/Zodiac/bec2.png new file mode 100644 index 0000000..266e5a5 Binary files /dev/null and b/themes/Zodiac/bec2.png differ diff --git a/themes/Zodiac/bemused.png b/themes/Zodiac/bemused.png new file mode 100644 index 0000000..a0b886e Binary files /dev/null and b/themes/Zodiac/bemused.png differ diff --git a/themes/Zodiac/blocked.png b/themes/Zodiac/blocked.png new file mode 100644 index 0000000..ba92a9d Binary files /dev/null and b/themes/Zodiac/blocked.png differ diff --git a/themes/Zodiac/cancer1.png b/themes/Zodiac/cancer1.png new file mode 100644 index 0000000..370a830 Binary files /dev/null and b/themes/Zodiac/cancer1.png differ diff --git a/themes/Zodiac/cancer2.png b/themes/Zodiac/cancer2.png new file mode 100644 index 0000000..1a85bfc Binary files /dev/null and b/themes/Zodiac/cancer2.png differ diff --git a/themes/Zodiac/capricorn1.png b/themes/Zodiac/capricorn1.png new file mode 100644 index 0000000..8ae5fe5 Binary files /dev/null and b/themes/Zodiac/capricorn1.png differ diff --git a/themes/Zodiac/capricorn2.png b/themes/Zodiac/capricorn2.png new file mode 100644 index 0000000..ec31fb4 Binary files /dev/null and b/themes/Zodiac/capricorn2.png differ diff --git a/themes/Zodiac/cease.wav b/themes/Zodiac/cease.wav new file mode 100644 index 0000000..4169e12 Binary files /dev/null and b/themes/Zodiac/cease.wav differ diff --git a/themes/Zodiac/chumlabelbg.png b/themes/Zodiac/chumlabelbg.png new file mode 100644 index 0000000..1d12780 Binary files /dev/null and b/themes/Zodiac/chumlabelbg.png differ diff --git a/themes/Zodiac/chummy.png b/themes/Zodiac/chummy.png new file mode 100644 index 0000000..c6359d1 Binary files /dev/null and b/themes/Zodiac/chummy.png differ diff --git a/themes/Zodiac/close.png b/themes/Zodiac/close.png new file mode 100644 index 0000000..a58a89a Binary files /dev/null and b/themes/Zodiac/close.png differ diff --git a/themes/Zodiac/clubs1.png b/themes/Zodiac/clubs1.png new file mode 100644 index 0000000..a2d2fe3 Binary files /dev/null and b/themes/Zodiac/clubs1.png differ diff --git a/themes/Zodiac/clubs2.png b/themes/Zodiac/clubs2.png new file mode 100644 index 0000000..e46c769 Binary files /dev/null and b/themes/Zodiac/clubs2.png differ diff --git a/themes/Zodiac/dave1.png b/themes/Zodiac/dave1.png new file mode 100644 index 0000000..1d003d0 Binary files /dev/null and b/themes/Zodiac/dave1.png differ diff --git a/themes/Zodiac/dave2.png b/themes/Zodiac/dave2.png new file mode 100644 index 0000000..c0a1fce Binary files /dev/null and b/themes/Zodiac/dave2.png differ diff --git a/themes/Zodiac/detestful.png b/themes/Zodiac/detestful.png new file mode 100644 index 0000000..6f2e67f Binary files /dev/null and b/themes/Zodiac/detestful.png differ diff --git a/themes/Zodiac/devious.png b/themes/Zodiac/devious.png new file mode 100644 index 0000000..5e6f24f Binary files /dev/null and b/themes/Zodiac/devious.png differ diff --git a/themes/Zodiac/diamonds1.png b/themes/Zodiac/diamonds1.png new file mode 100644 index 0000000..1b5ddd0 Binary files /dev/null and b/themes/Zodiac/diamonds1.png differ diff --git a/themes/Zodiac/diamonds2.png b/themes/Zodiac/diamonds2.png new file mode 100644 index 0000000..daa07c4 Binary files /dev/null and b/themes/Zodiac/diamonds2.png differ diff --git a/themes/Zodiac/discontent.png b/themes/Zodiac/discontent.png new file mode 100644 index 0000000..f484118 Binary files /dev/null and b/themes/Zodiac/discontent.png differ diff --git a/themes/Zodiac/distraught.png b/themes/Zodiac/distraught.png new file mode 100644 index 0000000..b86f287 Binary files /dev/null and b/themes/Zodiac/distraught.png differ diff --git a/themes/Zodiac/ecstatic.png b/themes/Zodiac/ecstatic.png new file mode 100644 index 0000000..7a7e131 Binary files /dev/null and b/themes/Zodiac/ecstatic.png differ diff --git a/themes/Zodiac/gemini1.png b/themes/Zodiac/gemini1.png new file mode 100644 index 0000000..e7d9705 Binary files /dev/null and b/themes/Zodiac/gemini1.png differ diff --git a/themes/Zodiac/gemini2.png b/themes/Zodiac/gemini2.png new file mode 100644 index 0000000..3f799db Binary files /dev/null and b/themes/Zodiac/gemini2.png differ diff --git a/themes/Zodiac/hearts1.png b/themes/Zodiac/hearts1.png new file mode 100644 index 0000000..b6a470d Binary files /dev/null and b/themes/Zodiac/hearts1.png differ diff --git a/themes/Zodiac/hearts2.png b/themes/Zodiac/hearts2.png new file mode 100644 index 0000000..0718607 Binary files /dev/null and b/themes/Zodiac/hearts2.png differ diff --git a/themes/Zodiac/insolent.png b/themes/Zodiac/insolent.png new file mode 100644 index 0000000..07a3611 Binary files /dev/null and b/themes/Zodiac/insolent.png differ diff --git a/themes/Zodiac/jade1.png b/themes/Zodiac/jade1.png new file mode 100644 index 0000000..dac5bab Binary files /dev/null and b/themes/Zodiac/jade1.png differ diff --git a/themes/Zodiac/jade2.png b/themes/Zodiac/jade2.png new file mode 100644 index 0000000..6aeb79c Binary files /dev/null and b/themes/Zodiac/jade2.png differ diff --git a/themes/Zodiac/john1.png b/themes/Zodiac/john1.png new file mode 100644 index 0000000..d3356cc Binary files /dev/null and b/themes/Zodiac/john1.png differ diff --git a/themes/Zodiac/john2.png b/themes/Zodiac/john2.png new file mode 100644 index 0000000..73e17dd Binary files /dev/null and b/themes/Zodiac/john2.png differ diff --git a/themes/Zodiac/leftarrow.png b/themes/Zodiac/leftarrow.png new file mode 100644 index 0000000..0361d14 Binary files /dev/null and b/themes/Zodiac/leftarrow.png differ diff --git a/themes/Zodiac/leo1.png b/themes/Zodiac/leo1.png new file mode 100644 index 0000000..3248207 Binary files /dev/null and b/themes/Zodiac/leo1.png differ diff --git a/themes/Zodiac/leo2.png b/themes/Zodiac/leo2.png new file mode 100644 index 0000000..2d7a900 Binary files /dev/null and b/themes/Zodiac/leo2.png differ diff --git a/themes/Zodiac/libra1.png b/themes/Zodiac/libra1.png new file mode 100644 index 0000000..e12a2bb Binary files /dev/null and b/themes/Zodiac/libra1.png differ diff --git a/themes/Zodiac/libra2.png b/themes/Zodiac/libra2.png new file mode 100644 index 0000000..6e3a238 Binary files /dev/null and b/themes/Zodiac/libra2.png differ diff --git a/themes/Zodiac/m.png b/themes/Zodiac/m.png new file mode 100644 index 0000000..5924246 Binary files /dev/null and b/themes/Zodiac/m.png differ diff --git a/themes/Zodiac/manipulative.png b/themes/Zodiac/manipulative.png new file mode 100644 index 0000000..dceebf1 Binary files /dev/null and b/themes/Zodiac/manipulative.png differ diff --git a/themes/Zodiac/memo.png b/themes/Zodiac/memo.png new file mode 100644 index 0000000..30b9631 Binary files /dev/null and b/themes/Zodiac/memo.png differ diff --git a/themes/Zodiac/mirthful.png b/themes/Zodiac/mirthful.png new file mode 100644 index 0000000..6ce8e6d Binary files /dev/null and b/themes/Zodiac/mirthful.png differ diff --git a/themes/Zodiac/moods.txt b/themes/Zodiac/moods.txt new file mode 100644 index 0000000..fd8eb83 --- /dev/null +++ b/themes/Zodiac/moods.txt @@ -0,0 +1,43 @@ +chummy jade 0 + +rancorous karkat 1 + +offline 2 + +pleasant rose 3 + +distraught club 4 + +pranky john 5 + +smooth dave 6 + +ecstatic feferi 7 + +relaxed kanaya 8 + +discontent tavros 9 + +devious terezi 10 + +sleek sollux 11 + +detestful eridan 12 + +mirthful gamzee 13 + +manipulative vriska 14 + +vigorous equius 15 + +perky nepeta 16 + +acceptant aradia 17 + +protective doc scratch 18 + +mystified diamond 19 + +amazed heart 20 + +insolent spade 21 \ No newline at end of file diff --git a/themes/Zodiac/mystified.png b/themes/Zodiac/mystified.png new file mode 100644 index 0000000..88e0480 Binary files /dev/null and b/themes/Zodiac/mystified.png differ diff --git a/themes/Zodiac/offline.png b/themes/Zodiac/offline.png new file mode 100644 index 0000000..6f7f13a Binary files /dev/null and b/themes/Zodiac/offline.png differ diff --git a/themes/Zodiac/offline1.png b/themes/Zodiac/offline1.png new file mode 100644 index 0000000..adbd68b Binary files /dev/null and b/themes/Zodiac/offline1.png differ diff --git a/themes/Zodiac/offline2.png b/themes/Zodiac/offline2.png new file mode 100644 index 0000000..3735d50 Binary files /dev/null and b/themes/Zodiac/offline2.png differ diff --git a/themes/Zodiac/perky.png b/themes/Zodiac/perky.png new file mode 100644 index 0000000..41a9725 Binary files /dev/null and b/themes/Zodiac/perky.png differ diff --git a/themes/Zodiac/pester1.png b/themes/Zodiac/pester1.png new file mode 100644 index 0000000..285872c Binary files /dev/null and b/themes/Zodiac/pester1.png differ diff --git a/themes/Zodiac/pester2.png b/themes/Zodiac/pester2.png new file mode 100644 index 0000000..992ff61 Binary files /dev/null and b/themes/Zodiac/pester2.png differ diff --git a/themes/Zodiac/pisces1.png b/themes/Zodiac/pisces1.png new file mode 100644 index 0000000..90bebf0 Binary files /dev/null and b/themes/Zodiac/pisces1.png differ diff --git a/themes/Zodiac/pisces2.png b/themes/Zodiac/pisces2.png new file mode 100644 index 0000000..fc32eb0 Binary files /dev/null and b/themes/Zodiac/pisces2.png differ diff --git a/themes/Zodiac/pleasant.png b/themes/Zodiac/pleasant.png new file mode 100644 index 0000000..d8b70eb Binary files /dev/null and b/themes/Zodiac/pleasant.png differ diff --git a/themes/Zodiac/pranky.png b/themes/Zodiac/pranky.png new file mode 100644 index 0000000..f8c50c5 Binary files /dev/null and b/themes/Zodiac/pranky.png differ diff --git a/themes/Zodiac/protective.png b/themes/Zodiac/protective.png new file mode 100644 index 0000000..3135aa5 Binary files /dev/null and b/themes/Zodiac/protective.png differ diff --git a/themes/Zodiac/rancorous.png b/themes/Zodiac/rancorous.png new file mode 100644 index 0000000..5ed54e7 Binary files /dev/null and b/themes/Zodiac/rancorous.png differ diff --git a/themes/Zodiac/relaxed.png b/themes/Zodiac/relaxed.png new file mode 100644 index 0000000..fbae539 Binary files /dev/null and b/themes/Zodiac/relaxed.png differ diff --git a/themes/Zodiac/rightarrow.png b/themes/Zodiac/rightarrow.png new file mode 100644 index 0000000..e31f9a8 Binary files /dev/null and b/themes/Zodiac/rightarrow.png differ diff --git a/themes/Zodiac/rose1.png b/themes/Zodiac/rose1.png new file mode 100644 index 0000000..41a4f5b Binary files /dev/null and b/themes/Zodiac/rose1.png differ diff --git a/themes/Zodiac/rose2.png b/themes/Zodiac/rose2.png new file mode 100644 index 0000000..fa1a2ec Binary files /dev/null and b/themes/Zodiac/rose2.png differ diff --git a/themes/Zodiac/sagittarius1.png b/themes/Zodiac/sagittarius1.png new file mode 100644 index 0000000..d48ccfb Binary files /dev/null and b/themes/Zodiac/sagittarius1.png differ diff --git a/themes/Zodiac/sagittarius2.png b/themes/Zodiac/sagittarius2.png new file mode 100644 index 0000000..a9499ff Binary files /dev/null and b/themes/Zodiac/sagittarius2.png differ diff --git a/themes/Zodiac/scorpio1.png b/themes/Zodiac/scorpio1.png new file mode 100644 index 0000000..0e1bba9 Binary files /dev/null and b/themes/Zodiac/scorpio1.png differ diff --git a/themes/Zodiac/scorpio2.png b/themes/Zodiac/scorpio2.png new file mode 100644 index 0000000..cda4ac0 Binary files /dev/null and b/themes/Zodiac/scorpio2.png differ diff --git a/themes/Zodiac/sleek.png b/themes/Zodiac/sleek.png new file mode 100644 index 0000000..b4a9afa Binary files /dev/null and b/themes/Zodiac/sleek.png differ diff --git a/themes/Zodiac/smooth.png b/themes/Zodiac/smooth.png new file mode 100644 index 0000000..5651575 Binary files /dev/null and b/themes/Zodiac/smooth.png differ diff --git a/themes/Zodiac/spades1.png b/themes/Zodiac/spades1.png new file mode 100644 index 0000000..d823a11 Binary files /dev/null and b/themes/Zodiac/spades1.png differ diff --git a/themes/Zodiac/spades2.png b/themes/Zodiac/spades2.png new file mode 100644 index 0000000..923e862 Binary files /dev/null and b/themes/Zodiac/spades2.png differ diff --git a/themes/Zodiac/style.js b/themes/Zodiac/style.js new file mode 100644 index 0000000..a5e71a1 --- /dev/null +++ b/themes/Zodiac/style.js @@ -0,0 +1,417 @@ +{"main": + {"style": "background-color:rgba(0,0,0,0); background-repeat: no-repeat;", + "background-image": "$path/zodiacalternia.png", + "size": [650, 650], + "icon": "$path/pester1.png", + "newmsgicon": "$path/pester2.png", + "windowtitle": "Zodiac", + "close": { "image": "$path/x.png", + "loc": [416, 134]}, + "minimize": { "image": "$path/m.png", + "loc": [400, 140]}, + "menubar": { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white;" }, + "menu" : { "style": "font-family: 'Arial'; font-size: 11px; font: bold; color: white; background-color: black; border:3px solid white;", + "selected": "background-color: #545454", + "menuitem": "margin-right:14px;", + "loc": [225,133] + }, + "sounds": { "alertsound": "$path/alarm.wav", + "ceasesound": "$path/cease.wav" }, + "menus": {"client": {"_name": "Client", + "options": "Options", + "memos": "Memos", + "logviewer": "Pesterlogs", + "userlist": "Userlist", + "import": "Import", + "reconnect": "Reconnect", + "idle": "Idle", + "exit": "Exit"}, + "profile": {"_name": "Profile", + "switch": "Chumhandle", + "theme": "Theme", + "color": "Color", + "block": "Trollslum", + "quirks": "Quirks" }, + "help": { "_name": "Help", + "help": "Help", + "calsprite": "Calsprite", + "about": "About" }, + "rclickchumlist": {"pester": "Pester", + "removechum": "Remove", + "report": "Report", + "blockchum": "Block", + "report": "Report", + "addchum": "Add Chum", + "viewlog": "View Pesterlog", + "unblockchum": "Unblock", + "banuser": "Ban", + "opuser": "Promote", + "quirksoff": "Quirks Off" } + }, + "chums": { "style": "font-size: 12px; background: black; border: 3px solid white; font:bold; font-family: 'Arial';selection-background-color:rgb(100,100,100); color: white;", + "loc": [225, 150], + "size": [202, 294], + "userlistcolor": "white", + "moods": { + + "chummy": { "icon": "$path/chummy.png", "color": "#63ea00" }, + + "rancorous": { "icon": "$path/rancorous.png", "color": "#7f7f7f" }, + + "offline": { "icon": "$path/offline.png", "color": "white"}, + + + "pleasant": { "icon": "$path/pleasant.png", "color": "#d69df8" }, + + "distraught": { "icon": "$path/distraught.png", "color": "#706eba" }, + + "pranky": { "icon": "$path/pranky.png", "color": "blue" }, + + "smooth": { "icon": "$path/smooth.png", "color": "red" }, + + + "mystified": { "icon": "$path/mystified.png", "color": "red" }, + + "amazed": { "icon": "$path/amazed.png", "color": "red" }, + + "insolent": { "icon": "$path/insolent.png", "color": "white" }, + + "bemused": { "icon": "$path/bemused.png", "color": "white" }, + + + "ecstatic": { "icon": "$path/ecstatic.png", "color": "#99004d" }, + + "relaxed": { "icon": "$path/relaxed.png", "color": "#078446" }, + + "discontent": { "icon": "$path/discontent.png", "color": "#a75403" }, + + "devious": { "icon": "$path/devious.png", "color": "#008282" }, + + "sleek": { "icon": "$path/sleek.png", "color": "#a1a100" }, + + "detestful": { "icon": "$path/detestful.png", "color": "#6a006a" }, + + "mirthful": { "icon": "$path/mirthful.png", "color": "#450077" }, + + "manipulative": { "icon": "$path/manipulative.png", "color": "#004182" }, + + "vigorous": { "icon": "$path/vigorous.png", "color": "#0021cb" }, + + "perky": { "icon": "$path/perky.png", "color": "#406600" }, + + "acceptant": { "icon": "$path/acceptant.png", "color": "#a10000" }, + + "protective": { "icon": "$path/protective.png", "color": "white" }, + + "blocked": { "icon": "$path/blocked.png", "color": "white" } + + } + }, + "trollslum": { + "style": "background: black; font-family: 'Arial'; color: white;", + "size": [200, 450], + "label": { "text": "Chumpdump", + "style": "color: white ; font: bold; font-family: 'Arial'; border: 0px;" }, + "chumroll": {"style": "border: 3px solid white; background-color: black; color: white; padding: 5px; font: bold; font-family: 'Arial'; selection-background-color: rgb(100,100,100);" } + }, + "mychumhandle": { "label": { "text": "", + "loc": [0,0], + "style": "color: rgba(0,0,0,0);" }, + "handle": { "style": "background: black; padding: 3px; padding-left: 26px; color: white; font-family:'Arial'; font: bold; text-align:left; font-size: 12px; border: 3px solid white;", + "loc": [225,450], + "size": [202, 27] }, + "colorswatch": { "loc": [402,453], + "size": [22,21], + "text": "" }, + "currentMood": [231, 455] + }, + "defaultwindow": { "style": "color: black; background: rgb(210,0,0); font-family: 'Arial'; font: bold; selection-background-color: rgb(100,100,100);" + }, + "addchum": + { "style": "background-image:url($path/addchum1.png); border:0px;", + "pressed": "background-image:url($path/addchum2.png); border:0px;", + "loc": [225, 564], + "size": [50, 50], + "text": "" + }, + "pester": + { "style": "background-image:url($path/pester1.png); border:0px;", + "pressed": "background-image:url($path/pester2.png); border:0px;", + "loc": [367, 564], + "size": [50, 50], + "text": "" + }, + "block": { "style": "background: rgba(0,0,0,0); border:0px; color: rgba(0,0,0,0);", + "loc": [0, 0], + "size": [0, 0], + "text": "" + }, + "defaultmood": 0, + "moodlabel": { "style": "", + "loc": [0, 0], + "text": "" + }, + "moods": [ + { "style": "background-image:url($path/aries1.png); border:0px;", + "selected": "background-image:url($path/aries2.png); border:0px;", + "loc": [56, 433], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 17 + }, + { "style": "background-image:url($path/tauros1.png); border:0px;", + "selected": "background-image:url($path/tauros2.png); border:0px;", + "loc": [157, 534], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 9 + }, + { "style": "background-image:url($path/gemini1.png); border:0px;", + "selected": "background-image:url($path/gemini2.png); border:0px;", + "loc": [295, 574], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 11 + }, + { "style": "background-image:url($path/cancer1.png); border:0px;", + "selected": "background-image:url($path/cancer2.png); border:0px;", + "loc": [432, 534], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 1 + }, + { "style": "background-image:url($path/leo1.png); border:0px;", + "selected": "background-image:url($path/leo2.png); border:0px;", + "loc": [533, 433], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 16 + }, + { "style": "background-image:url($path/virgo1.png); border:0px;", + "selected": "background-image:url($path/virgo2.png); border:0px;", + "loc": [574, 295], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 8 + }, + { "style": "background-image:url($path/libra1.png); border:0px;", + "selected": "background-image:url($path/libra2.png); border:0px;", + "loc": [533, 157], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 10 + }, + { "style": "background-image:url($path/scorpio1.png); border:0px;", + "selected": "background-image:url($path/scorpio2.png); border:0px;", + "loc": [432, 56], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 14 + }, + { "style": "background-image:url($path/sagittarius1.png); border:0px;", + "selected": "background-image:url($path/sagittarius2.png); border:0px;", + "loc": [295, 16], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 15 + }, + { "style": "background-image:url($path/capricorn1.png); border:0px;", + "selected": "background-image:url($path/capricorn2.png); border:0px;", + "loc": [157, 56], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 13 + }, + { "style": "background-image:url($path/aquarius1.png); border:0px;", + "selected": "background-image:url($path/aquarius2.png); border:0px;", + "loc": [56, 157], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 12 + }, + { "style": "background-image:url($path/pisces1.png); border:0px;", + "selected": "background-image:url($path/pisces2.png); border:0px;", + "loc": [16, 295], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 7 + }, + + { "style": "background-image:url($path/john1.png); border:0px;", + "selected": "background-image:url($path/john2.png); border:0px;", + "loc": [367, 27], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 5 + }, + { "style": "background-image:url($path/rose1.png); border:0px;", + "selected": "background-image:url($path/rose2.png); border:0px;", + "loc": [30, 369], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 3 + }, + { "style": "background-image:url($path/dave1.png); border:0px;", + "selected": "background-image:url($path/dave2.png); border:0px;", + "loc": [99, 494], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 6 + }, + { "style": "background-image:url($path/jade1.png); border:0px;", + "selected": "background-image:url($path/jade2.png); border:0px;", + "loc": [566, 369], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 0 + }, + { "style": "background-image:url($path/bec1.png); border:0px;", + "selected": "background-image:url($path/bec2.png); border:0px;", + "loc": [492, 494], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 18 + }, + + { "style": "background-image:url($path/hearts1.png); border:0px;", + "selected": "background-image:url($path/hearts2.png); border:0px;", + "loc": [492, 101], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 20 + }, + { "style": "background-image:url($path/spades1.png); border:0px;", + "selected": "background-image:url($path/spades2.png); border:0px;", + "loc": [99, 101], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 21 + }, + { "style": "background-image:url($path/diamonds1.png); border:0px;", + "selected": "background-image:url($path/diamonds2.png); border:0px;", + "loc": [30, 225], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 19 + }, + { "style": "background-image:url($path/clubs1.png); border:0px;", + "selected": "background-image:url($path/clubs2.png); border:0px;", + "loc": [566, 225], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 22 + }, + + { "style": "background-image:url($path/offline1.png); border:0px;", + "selected": "background-image:url($path/offline2.png); border:0px;", + "loc": [223, 27], + "size": [50, 50], + "text": "", + "icon": "", + "mood": 2 + } + ] + }, + "convo": + {"style": "background: black; font-family: 'Arial';", + "scrollbar": { "style" : "", "handle": "" }, + "margins": {"top": 10, "bottom": 10, "left": 10, "right": 10 }, + "size": [400, 250], + "size": [400, 250], + "chumlabel": { "style": "background-image:url($path/chumlabelbg.png);background-color:rgb(108,108,108); background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 22, + "maxheight": 36, + "text" : "Pestering: $handle" + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 14px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px;" + }, + "tabwindow" : { + "style": "background: black; font-family: 'Arial'" + }, + "tabs": { + "style": "border: 2px solid white; background: black; color: white;", + "selectedstyle": "border: 3px solid white; background: white; color: black;", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "text": { + "beganpester": "began pestering", + "ceasepester": "ceased pestering", + "blocked": "blocked", + "unblocked": "unblocked", + "openmemo": "opened memo on board", + "joinmemo": "responded to memo", + "closememo": "ceased responding to memo", + "kickedmemo": "You have been banned from this memo!" + }, + "systemMsgColor": "#646464" + }, + "memos": + {"memoicon": "$path/memo.png", + "style": "background: black; font-family: 'Arial';", + "size": [450,300], + "tabs": { + "style": "border: 2px solid white; background: black; color: white;", + "selectedstyle": "border: 3px solid white; background: white; color: black;", + "newmsgcolor": "red", + "tabstyle": 0 + }, + "label": { "text": "Bulletin Board: $channel", + "style": "background-image:url($path/chumlabelbg.png);background-color:rgb(108,108,108); background-repeat: no-repeat; color: white; padding: 2px; border:1px solid #c2c2c2; margin-bottom: 4px;", + "align": { "h": "left", "v": "center" }, + "minheight": 18, + "maxheight": 18 + }, + "textarea": { + "style": "background: white; border:2px solid #c2c2c2; font-size: 12px;" + }, + "input": { + "style": "background: white;margin-top:5px; border:1px solid #c2c2c2; font-size: 12px; margin-bottom: 5px; " + }, + "margins": {"top": 10, "bottom": 10, "left": 9, "right": 4 }, + "userlist": { "width": 125, + "style": "font-size: 12px; background: white; margin-left: 5px; margin-bottom: 5px; border:2px solid #c2c2c2; padding: 5px; font-family: 'Arial';selection-background-color:rgb(200,200,200);" + }, + "time": { "text": { "width": 75, + "style": "color: black; font:bold; border:1px solid #c2c2c2; background: white; height: 19px;" + }, + "slider": { "style": " border:1px solid #c2c2c2;", + "groove": "border-image:url($path/timeslider.png);", + "handle": "image:url($path/timeicon.png);" + }, + "buttons": { "style": "border:1px solid rgb(166,166,166); height: 17px; width: 50px; color: white; font-family: 'Arial'; background: black; margin-left: 2px;" }, + "arrows": { "left": "$path/leftarrow.png", + "right": "$path/rightarrow.png", + "style": "width: 19px; height: 19px; border:0px; margin-left: 2px;" + } + }, + "systemMsgColor": "#646464", + "op": { "icon": "$path/smooth.png" } + } +} \ No newline at end of file diff --git a/themes/Zodiac/tauros1.png b/themes/Zodiac/tauros1.png new file mode 100644 index 0000000..fc4654a Binary files /dev/null and b/themes/Zodiac/tauros1.png differ diff --git a/themes/Zodiac/tauros2.png b/themes/Zodiac/tauros2.png new file mode 100644 index 0000000..9a1cca8 Binary files /dev/null and b/themes/Zodiac/tauros2.png differ diff --git a/themes/Zodiac/timeicon.png b/themes/Zodiac/timeicon.png new file mode 100644 index 0000000..b904542 Binary files /dev/null and b/themes/Zodiac/timeicon.png differ diff --git a/themes/Zodiac/timeslider.png b/themes/Zodiac/timeslider.png new file mode 100644 index 0000000..95b202e Binary files /dev/null and b/themes/Zodiac/timeslider.png differ diff --git a/themes/Zodiac/trayicon.png b/themes/Zodiac/trayicon.png new file mode 100644 index 0000000..31f7d29 Binary files /dev/null and b/themes/Zodiac/trayicon.png differ diff --git a/themes/Zodiac/trayicon2.png b/themes/Zodiac/trayicon2.png new file mode 100644 index 0000000..84d1156 Binary files /dev/null and b/themes/Zodiac/trayicon2.png differ diff --git a/themes/Zodiac/vigorous.png b/themes/Zodiac/vigorous.png new file mode 100644 index 0000000..e24d81d Binary files /dev/null and b/themes/Zodiac/vigorous.png differ diff --git a/themes/Zodiac/virgo1.png b/themes/Zodiac/virgo1.png new file mode 100644 index 0000000..85f90db Binary files /dev/null and b/themes/Zodiac/virgo1.png differ diff --git a/themes/Zodiac/virgo2.png b/themes/Zodiac/virgo2.png new file mode 100644 index 0000000..6106e39 Binary files /dev/null and b/themes/Zodiac/virgo2.png differ diff --git a/themes/Zodiac/x.png b/themes/Zodiac/x.png new file mode 100644 index 0000000..a3576c3 Binary files /dev/null and b/themes/Zodiac/x.png differ diff --git a/themes/Zodiac/zodiac signs.psd b/themes/Zodiac/zodiac signs.psd new file mode 100644 index 0000000..1e733a6 Binary files /dev/null and b/themes/Zodiac/zodiac signs.psd differ diff --git a/themes/Zodiac/zodiacalternia.png b/themes/Zodiac/zodiacalternia.png new file mode 100644 index 0000000..de69b65 Binary files /dev/null and b/themes/Zodiac/zodiacalternia.png differ diff --git a/themes/Zodiac/zodiacbg.psd b/themes/Zodiac/zodiacbg.psd new file mode 100644 index 0000000..5910a9e Binary files /dev/null and b/themes/Zodiac/zodiacbg.psd differ diff --git a/themes/Zodiac/zodiacearth.png b/themes/Zodiac/zodiacearth.png new file mode 100644 index 0000000..9a2d490 Binary files /dev/null and b/themes/Zodiac/zodiacearth.png differ