add adium color profiles

main
Steffen Rademacker 10 years ago
parent b75442dee0
commit 6a822f3f14

@ -0,0 +1,6 @@
<div class="message incoming">
<a title="%time{%H:%M:%S}%">
<span class="timestamp">%time{%H:%M:%S}%</span>
<span class="incomingName">&lt;%sender%&gt;</span> %message%
</a>
</div>

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AllowTextColors</key>
<false/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleGetInfoString</key>
<string>Terminal/IRC Message Style</string>
<key>CFBundleIdentifier</key>
<string>com.adiumx.terminal.style</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>1.3</string>
<key>CFBundleName</key>
<string>Mochastyle</string>
<key>CFBundlePackageType</key>
<string>AdIM</string>
<key>DefaultFontFamily</key>
<string>Monaco</string>
<key>DefaultFontSize</key>
<integer>9</integer>
<key>DisableCombineConsecutive</key>
<true/>
<key>DisableCustomBackground</key>
<false/>
<key>DisplayNameForNoVariant</key>
<string>None</string>
<key>MessageViewVersion</key>
<integer>3</integer>
<key>ShowsUserIcons</key>
<false/>
</dict>
</plist>

@ -0,0 +1,6 @@
<div class="message outgoing">
<a title="%time{%H:%M:%S}%">
<span class="timestamp">%time{%H:%M:%S}%</span>
<span class="outgoingName">&lt;%sender%&gt;</span> %message%
</a>
</div>

@ -0,0 +1,3 @@
<div class="status">
<a title="%time{%H:%M:%S}%">// %message%</a>
</div>

@ -0,0 +1,149 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<base href="%@">
<script type="text/ecmascript" defer="defer">
//Appending new content to the message view
function appendMessage(html) {
shouldScroll = nearBottom();
//Remove any existing insertion point
insert = document.getElementById("insert");
if(insert) insert.parentNode.removeChild(insert);
//Append the new message to the bottom of our chat block
chat = document.getElementById("Chat");
range = document.createRange();
range.selectNode(chat);
documentFragment = range.createContextualFragment(html);
chat.appendChild(documentFragment);
alignChat(shouldScroll);
}
function appendMessageNoScroll(html) {
//Remove any existing insertion point
insert = document.getElementById("insert");
if(insert) insert.parentNode.removeChild(insert);
//Append the new message to the bottom of our chat block
chat = document.getElementById("Chat");
range = document.createRange();
range.selectNode(chat);
documentFragment = range.createContextualFragment(html);
chat.appendChild(documentFragment);
}
function appendNextMessage(html){
shouldScroll = nearBottom();
//Locate the insertion point
insert = document.getElementById("insert");
//make new node
range = document.createRange();
range.selectNode(insert.parentNode);
newNode = range.createContextualFragment(html);
//swap
insert.parentNode.replaceChild(newNode,insert);
alignChat(shouldScroll);
}
function appendNextMessageNoScroll(html){
//Locate the insertion point
insert = document.getElementById("insert");
//make new node
range = document.createRange();
range.selectNode(insert.parentNode);
newNode = range.createContextualFragment(html);
//swap
insert.parentNode.replaceChild(newNode,insert);
}
//Auto-scroll to bottom. Use nearBottom to determine if a scrollToBottom is desired.
function nearBottom() {
return ( document.body.scrollTop >= ( document.body.offsetHeight - ( window.innerHeight * 1.2 ) ) );
}
function scrollToBottom() {
document.body.scrollTop = document.body.offsetHeight;
}
//Dynamically exchange the active stylesheet
function setStylesheet( id, url ) {
code = "<style id=\"" + id + "\" type=\"text/css\" media=\"screen,print\">";
if( url.length ) code += "@import url( \"" + url + "\" );";
code += "</style>";
range = document.createRange();
head = document.getElementsByTagName( "head" ).item(0);
range.selectNode( head );
documentFragment = range.createContextualFragment( code );
head.removeChild( document.getElementById( id ) );
head.appendChild( documentFragment );
}
//Swap an image with its alt-tag text on click
document.onclick = imageCheck;
function imageCheck() {
node = event.target;
if(node.tagName == 'IMG' && node.alt) {
a = document.createElement('a');
a.setAttribute('onclick', 'imageSwap(this)');
a.setAttribute('src', node.src);
text = document.createTextNode(node.alt);
a.appendChild(text);
node.parentNode.replaceChild(a, node);
}
}
function imageSwap(node) {
shouldScroll = nearBottom();
//Swap the image/text
img = document.createElement('img');
img.setAttribute('src', node.src);
img.setAttribute('alt', node.firstChild.nodeValue);
node.parentNode.replaceChild(img, node);
alignChat(shouldScroll);
}
//Align our chat to the bottom of the window. If true is passed, view will also be scrolled down
function alignChat(shouldScroll) {
var windowHeight = window.innerHeight;
if (windowHeight > 0) {
var contentElement = document.getElementById('Chat');
contentElement.style.position = 'static';
}
if (shouldScroll) scrollToBottom();
}
function windowDidResize(){
alignChat(true/*nearBottom()*/); //nearBottom buggy with inactive tabs
}
window.onresize = windowDidResize;
</script>
<!-- This style is shared by all variants. !-->
<style id="baseStyle" type="text/css" media="screen,print">
%@
*{ word-wrap:break-word; }
</style>
<!-- Although we call this mainStyle for legacy reasons, it's actually the variant style !-->
<style id="mainStyle" type="text/css" media="screen,print">
@import url( "%@" );
</style>
</head>
<body onload="alignchat(true);" style="==bodyBackground==">
%@
<span id="Chat">
</span>
%@
</body>
</html>

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #3bcfff;
}
.outgoingName {
color : #ff178a;
}
.status {
padding : 1em;
color : #7bff2c;
text-transform : uppercase;
border-top : 1px dashed #7bff2c;
border-bottom : 1px dashed #7bff2c;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #7bff2c;
}
.outgoingName {
color : #fff227;
}
.status {
padding : 1em;
color : #3bcfff;
text-transform : uppercase;
border-top : 1px dashed #3bcfff;
border-bottom : 1px dashed #3bcfff;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #ff982a;
}
.outgoingName {
color : #fff227;
}
.status {
padding : 1em;
color : #3bcfff;
text-transform : uppercase;
border-top : 1px dashed #3bcfff;
border-bottom : 1px dashed #3bcfff;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #ff178a;
}
.outgoingName {
color : #cc00ff;
}
.status {
padding : 1em;
color : #3bcfff;
text-transform : uppercase;
border-top : 1px dashed #3bcfff;
border-bottom : 1px dashed #3bcfff;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #cc00ff;
}
.outgoingName {
color : #7bff2c;
}
.status {
padding : 1em;
color : #3bcfff;
text-transform : uppercase;
border-top : 1px dashed #3bcfff;
border-bottom : 1px dashed #3bcfff;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #cc00ff;
}
.outgoingName {
color : #3bcfff;
}
.status {
padding : 1em;
color : #ff178a;
text-transform : uppercase;
border-top : 1px dashed #ff178a;
border-bottom : 1px dashed #ff178a;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #3bcfff;
}
.outgoingName {
color : #7bff2c;
}
.status {
padding : 1em;
color : #ff178a;
text-transform : uppercase;
border-top : 1px dashed #ff178a;
border-bottom : 1px dashed #ff178a;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #3bcfff;
}
.outgoingName {
color : #ff9933;
}
.status {
padding : 1em;
color : #ff178a;
text-transform : uppercase;
border-top : 1px dashed #ff178a;
border-bottom : 1px dashed #ff178a;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,70 @@
body {
background: #333;
line-height : 1.3em;
}
a {
text-decoration: none;
}
a:link {
color : #0cf;
}
a:link:hover {
text-decoration : underline;
}
.incoming {
color : #fff;
}
.incoming:hover {
background : #444;
color : white;
}
.outgoing {
color : #999;
}
.outgoing:hover {
background : #444;
color : white;
}
input {
background : black
border : 2px solid #0cf;
}
.incomingName {
color : #3bcfff;
}
.outgoingName {
color : #ff178a;
}
.status {
padding : 1em;
color : #7bff2c;
text-transform : uppercase;
border-top : 1px dashed #7bff2c;
border-bottom : 1px dashed #7bff2c;
margin : 1em 0;
}
.message {
padding : 2px 5px;
}
.timestamp {
float: right;
color : #666;
}
.outgoing:hover .timestamp,
.incoming:hover .timestamp {
color : #ccc;
}

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.adiumx.Mochastyle</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>1.0</string>
<key>CFBundleName</key>
<string>Mochastyle</string>
<key>CFBundlePackageType</key>
<string>AdIM</string>
<key>XtraBundleVersion</key>
<integer>1</integer>
</dict>
</plist>

@ -0,0 +1,266 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Active Emoticon Packs_BGTheme_Emoticons</key>
<array>
<string>Default</string>
</array>
<key>Alternating Grid_BGTheme_Contact List Display</key>
<true/>
<key>Away Color</key>
<string>179,179,179</string>
<key>Away Color_BGTheme_Contact Status Coloring</key>
<string>189,189,189</string>
<key>Away Enabled</key>
<true/>
<key>Away Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Away Label Color</key>
<string>234,234,214</string>
<key>Away Label Color_BGTheme_Contact Status Coloring</key>
<string>229,33,39</string>
<key>Background As Events</key>
<true/>
<key>Background As Status</key>
<false/>
<key>Background Color</key>
<string>51,51,51</string>
<key>Background Color_BGTheme_Contact List Display</key>
<string>59,69,59</string>
<key>Bold Groups_BGTheme_Contact List Display</key>
<true/>
<key>Borderless_BGTheme_Contact List Display</key>
<true/>
<key>Contact Bubble Draw With Gradient</key>
<false/>
<key>Contact Cell Style</key>
<integer>0</integer>
<key>Contact Color_BGTheme_Contact List Display</key>
<string>0,255,48</string>
<key>Contact Font</key>
<string>Monaco,9</string>
<key>Contact Left Indent</key>
<integer>0</integer>
<key>Contact Right Indent</key>
<integer>0</integer>
<key>Contact Spacing</key>
<integer>0</integer>
<key>Contact Status Text Color</key>
<string>128,128,128</string>
<key>Contact Text Alignment</key>
<integer>0</integer>
<key>Custom Group Color_BGTheme_Contact List Display</key>
<true/>
<key>Display Idle Time_BGTheme_Idle Display</key>
<true/>
<key>Extended Status Position</key>
<integer>0</integer>
<key>Extended Status Style</key>
<integer>2</integer>
<key>Fade Offline Images</key>
<true/>
<key>Font_BGTheme_Contact List Display</key>
<string>Monaco,9</string>
<key>Grid Color</key>
<string>245,245,245</string>
<key>Grid Color_BGTheme_Contact List Display</key>
<string>245,255,251</string>
<key>Grid Enabled</key>
<true/>
<key>Group Background</key>
<string>255,255,255</string>
<key>Group Background Gradient</key>
<string>76,76,76</string>
<key>Group Bottom Spacing</key>
<integer>0</integer>
<key>Group Cell Style</key>
<integer>1</integer>
<key>Group Color_BGTheme_Contact List Display</key>
<string>0,0,0</string>
<key>Group Font</key>
<string>Monaco,9</string>
<key>Group Gradient</key>
<true/>
<key>Group Hide Bubble</key>
<false/>
<key>Group Inverted Text Color</key>
<string>255,255,255</string>
<key>Group Shadow</key>
<true/>
<key>Group Shadow Color</key>
<string>128,128,128</string>
<key>Group Text Alignment</key>
<integer>0</integer>
<key>Group Text Color</key>
<string>0,0,0</string>
<key>Group Top Spacing</key>
<integer>2</integer>
<key>Horizontal Autosizing</key>
<true/>
<key>Horizontal Width</key>
<integer>200</integer>
<key>Idle And Away Color</key>
<string>179,179,179</string>
<key>Idle And Away Color_BGTheme_Contact Status Coloring</key>
<string>49,49,49</string>
<key>Idle And Away Enabled</key>
<true/>
<key>Idle And Away Enabled_BGTheme_Contact Status Coloring</key>
<false/>
<key>Idle And Away Label Color</key>
<string>233,233,214</string>
<key>Idle And Away Label Color_BGTheme_Contact Status Coloring</key>
<string>233,233,214</string>
<key>Idle Color</key>
<string>179,179,179</string>
<key>Idle Color_BGTheme_Contact Status Coloring</key>
<string>234,28,31</string>
<key>Idle Enabled</key>
<true/>
<key>Idle Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Idle Label Color</key>
<string>234,234,234</string>
<key>Idle Label Color_BGTheme_Contact Status Coloring</key>
<string>132,137,130</string>
<key>Idle Time Text Color_BGTheme_Idle Display</key>
<string>0,0,0</string>
<key>Label Around Contact_BGTheme_Contact List Display</key>
<false/>
<key>Label Groups Color_BGTheme_Contact List Display</key>
<string>0,255,19</string>
<key>Label Groups_BGTheme_Contact List Display</key>
<true/>
<key>Label Opacity_BGTheme_Contact List Display</key>
<real>1</real>
<key>Offline Color</key>
<string>50,50,50</string>
<key>Offline Color_BGTheme_Contact Status Coloring</key>
<string>50,50,50</string>
<key>Offline Enabled</key>
<false/>
<key>Offline Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Offline Label Color</key>
<string>240,240,240</string>
<key>Offline Label Color_BGTheme_Contact Status Coloring</key>
<string>240,240,240</string>
<key>Online Color</key>
<string>179,179,179</string>
<key>Online Color_BGTheme_Contact Status Coloring</key>
<string>0,208,1</string>
<key>Online Enabled</key>
<true/>
<key>Online Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Online Label Color</key>
<string>209,234,220</string>
<key>Online Label Color_BGTheme_Contact Status Coloring</key>
<string>38,42,40</string>
<key>Opacity_BGTheme_Contact List Display</key>
<real>0</real>
<key>Outline Bubble</key>
<false/>
<key>Outline Bubble Line Width</key>
<integer>1</integer>
<key>Outline Groups Color_BGTheme_Contact List Display</key>
<string>104,121,108</string>
<key>Outline Groups_BGTheme_Contact List Display</key>
<true/>
<key>Outline Labels_BGTheme_Contact List Display</key>
<false/>
<key>Row Spacing_BGTheme_Contact List Display</key>
<real>3</real>
<key>Service Icon Position</key>
<integer>0</integer>
<key>Shadows_BGTheme_Contact List Display</key>
<true/>
<key>Show Extended Status</key>
<false/>
<key>Show Labels_BGTheme_Contact List Display</key>
<true/>
<key>Show Service Icons</key>
<false/>
<key>Show Status Icons</key>
<true/>
<key>Show User Icon</key>
<false/>
<key>Signed Off Color</key>
<string>255,255,255</string>
<key>Signed Off Color_BGTheme_Contact Status Coloring</key>
<string>255,255,255</string>
<key>Signed Off Enabled</key>
<true/>
<key>Signed Off Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Signed Off Label Color</key>
<string>128,0,0</string>
<key>Signed Off Label Color_BGTheme_Contact Status Coloring</key>
<string>198,55,43</string>
<key>Signed On Color</key>
<string>255,255,255</string>
<key>Signed On Color_BGTheme_Contact Status Coloring</key>
<string>255,255,255</string>
<key>Signed On Enabled</key>
<true/>
<key>Signed On Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Signed On Label Color</key>
<string>128,128,128</string>
<key>Signed On Label Color_BGTheme_Contact Status Coloring</key>
<string>43,198,56</string>
<key>Status Font</key>
<string>Monaco,9</string>
<key>Status Icon Position</key>
<integer>1</integer>
<key>Status Label Opacity</key>
<real>1</real>
<key>Status Label Opacity_BGTheme_Contact Status Coloring</key>
<real>1</real>
<key>Typing Color</key>
<string>255,255,255</string>
<key>Typing Color_BGTheme_Contact Status Coloring</key>
<string>255,255,255</string>
<key>Typing Enabled</key>
<true/>
<key>Typing Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Typing Label Color</key>
<string>0,128,128</string>
<key>Typing Label Color_BGTheme_Contact Status Coloring</key>
<string>43,157,198</string>
<key>Unviewed Content Color</key>
<string>255,255,255</string>
<key>Unviewed Content Color_BGTheme_Contact Status Coloring</key>
<string>255,255,255</string>
<key>Unviewed Content Enabled</key>
<true/>
<key>Unviewed Content Enabled_BGTheme_Contact Status Coloring</key>
<true/>
<key>Unviewed Content Label Color</key>
<string>163,152,246</string>
<key>Unviewed Content Label Color_BGTheme_Contact Status Coloring</key>
<string>43,69,198</string>
<key>Use Gradient_BGTheme_Contact List Display</key>
<true/>
<key>User Icon Position</key>
<integer>1</integer>
<key>User Icon Size</key>
<integer>15</integer>
<key>Vertical Autosizing</key>
<true/>
<key>Window Shadowed</key>
<true/>
<key>Window Style</key>
<integer>2</integer>
<key>Window Transparency</key>
<real>0.1061023622751236</real>
<key>themeAuthor</key>
<string>Patrick Deuley</string>
<key>themeName</key>
<string>Mochastyle</string>
<key>themeVersion</key>
<string>1.0</string>
</dict>
</plist>

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleIdentifier</key>
<string>com.adiumx.Mochastyle</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>1.0</string>
<key>CFBundleName</key>
<string>Mochastyle</string>
<key>CFBundlePackageType</key>
<string>AdIM</string>
<key>XtraBundleVersion</key>
<integer>1</integer>
</dict>
</plist>

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Away Color</key>
<string>127,127,127</string>
<key>Away Enabled</key>
<true/>
<key>Away Label Color</key>
<string>234,234,214</string>
<key>Background As Events</key>
<true/>
<key>Background As Status</key>
<false/>
<key>Background Color</key>
<string>51,51,51</string>
<key>Background Fade</key>
<real>1</real>
<key>Background Image Path</key>
<string></string>
<key>Background Image Style</key>
<integer>0</integer>
<key>Contact Font</key>
<string>Monoco,8</string>
<key>Contact Left Indent</key>
<integer>12</integer>
<key>Contact Right Indent</key>
<integer>5</integer>
<key>Contact Spacing</key>
<integer>1</integer>
<key>Contact Status Text Color</key>
<string>128,128,128</string>
<key>Contact Text Alignment</key>
<integer>0</integer>
<key>Custom Highlight Enabled</key>
<true/>
<key>Fade Offline Images</key>
<true/>
<key>Grid Color</key>
<string>43,43,43</string>
<key>Grid Enabled</key>
<false/>
<key>Group Background</key>
<string>51,51,51</string>
<key>Group Background Gradient</key>
<string>0,0,0</string>
<key>Group Font</key>
<string>Monoco,8</string>
<key>Group Gradient</key>
<true/>
<key>Group Inverted Text Color</key>
<string>255,255,255</string>
<key>Group Shadow</key>
<false/>
<key>Group Shadow Color</key>
<string>13,56,95</string>
<key>Group Text Alignment</key>
<integer>0</integer>
<key>Group Text Color</key>
<string>255,255,255</string>
<key>Highlight Color</key>
<string>204,204,204</string>
<key>Horizontal Autosizing</key>
<true/>
<key>Horizontal Width</key>
<integer>640</integer>
<key>Idle And Away Color</key>
<string>127,127,127</string>
<key>Idle And Away Enabled</key>
<true/>
<key>Idle And Away Label Color</key>
<string>233,233,214</string>
<key>Idle Color</key>
<string>127,127,127</string>
<key>Idle Enabled</key>
<true/>
<key>Idle Label Color</key>
<string>234,234,214</string>
<key>Mobile Color</key>
<string>127,127,127</string>
<key>Mobile Enabled</key>
<false/>
<key>Offline Color</key>
<string>255,255,255</string>
<key>Offline Enabled</key>
<true/>
<key>Offline Image Opacity</key>
<real>0.5</real>
<key>Offline Label Color</key>
<string>240,240,240</string>
<key>Online Color</key>
<string>255,255,255</string>
<key>Online Enabled</key>
<true/>
<key>Online Label Color</key>
<string>231,240,255</string>
<key>Show Status Icons</key>
<true/>
<key>Signed Off Color</key>
<string>105,0,126</string>
<key>Signed Off Enabled</key>
<true/>
<key>Signed Off Label Color</key>
<string>0,0,0</string>
<key>Signed On Color</key>
<string>255,255,255</string>
<key>Signed On Enabled</key>
<true/>
<key>Signed On Label Color</key>
<string>0,0,0</string>
<key>Status Icon Position</key>
<integer>3</integer>
<key>Status Label Opacity</key>
<real>1</real>
<key>Typing Color</key>
<string>255,23,138</string>
<key>Typing Enabled</key>
<true/>
<key>Typing Label Color</key>
<string>0,0,0</string>
<key>Unviewed Content Color</key>
<string>59,207,255</string>
<key>Unviewed Content Enabled</key>
<true/>
<key>Unviewed Content Label Color</key>
<string>0,0,0</string>
<key>Use Background Image</key>
<false/>
<key>Vertical Autosizing</key>
<true/>
<key>Window Shadowed</key>
<true/>
<key>Window Transparency</key>
<real>1</real>
</dict>
</plist>

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AdiumSetVersion</key>
<integer>1</integer>
<key>List</key>
<dict>
<key>Generic Available</key>
<string>available.png</string>
<key>Generic Away</key>
<string>away.png</string>
<key>Idle</key>
<string>idle.png</string>
<key>Offline</key>
<string>offline.png</string>
<key>Unknown</key>
<string>unknown.png</string>
<key>content</key>
<string>content.png</string>
<key>typing</key>
<string>typing.png</string>
<key>enteredtext</key>
<string>enteredtext.png</string>
<key>Mobile</key>
<string>mobile.png</string>
<key>Invisible</key>
<string>invisible.png</string>
</dict>
<key>Tabs</key>
<dict>
<key>Generic Available</key>
<string>tab-available.png</string>
<key>Generic Away</key>
<string>tab-away.png</string>
<key>Idle</key>
<string>tab-idle.png</string>
<key>Offline</key>
<string>tab-offline.png</string>
<key>Unknown</key>
<string>tab-unknown.png</string>
<key>content</key>
<string>tab-content.png</string>
<key>typing</key>
<string>tab-typing.png</string>
<key>enteredtext</key>
<string>tab-enteredtext.png</string>
<key>Mobile</key>
<string>tab-mobile.png</string>
<key>Invisible</key>
<string>tab-invisible.png</string>
</dict>
</dict>
</plist>

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 502 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 141 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

Loading…
Cancel
Save