Last active
August 29, 2015 14:02
-
-
Save s-aska/62056b903824d80cf471 to your computer and use it in GitHub Desktop.
LimeChat Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
font-family: "Menlo"; | |
background-color: #272822; | |
color: white; | |
word-wrap: break-word; | |
margin: 0; | |
padding: 3px 4px 10px 4px; | |
font-size: 12px; | |
} | |
body { | |
margin: 0; | |
padding: 0; | |
} | |
hr { | |
margin: 0.5em 2em; | |
} | |
a { | |
color: white; | |
} | |
.inlineimage { | |
border: 0px; | |
-webkit-box-shadow: none; | |
} | |
.line[alternate=even], .line[alternate=odd] { padding-top: 1px; padding-bottom: 1px; } | |
.line[alternate=even] {} | |
.line[alternate=odd] {} | |
.line[highlight=true] {} | |
.url { | |
text-decoration: none; | |
word-break: break-all; | |
} | |
.address { | |
text-decoration: underline; | |
word-break: break-all; | |
} | |
.highlight { | |
color: #d33682; | |
font-weight: bold; | |
} | |
.time { | |
color: #75715e; | |
} | |
.place { | |
color: #75715e; | |
} | |
.sender[type=myself] { | |
color: #fd971f; | |
} | |
.sender[type=normal] { | |
color: #e6db74; | |
} | |
/* message body */ | |
.message[type=system] { color: #75715e; } | |
.message[type=error] { color: #dc322f; font-weight: bold; } | |
.message[type=reply] { color: #75715e; } | |
.message[type=error_reply] { color: #dc322f; } | |
.message[type=dcc_send_send] { color: #75715e; } | |
.message[type=dcc_send_receive] { color: #75715e; } | |
.message[type=privmsg] {} | |
.message[type=notice] { color: #75715e; } | |
.message[type=action] { color: #75715e; } | |
.message[type=join] { color: #75715e; } | |
.message[type=part] { color: #75715e; } | |
.message[type=kick] { color: #75715e; } | |
.message[type=quit] { color: #75715e; } | |
.message[type=kill] { color: #75715e; } | |
.message[type=nick] { color: #75715e; } | |
.message[type=mode] { color: #75715e; } | |
.message[type=topic] { color: #75715e; } | |
.message[type=invite] { color: #75715e; } | |
.message[type=wallops] { color: #75715e; } | |
.message[type=debug_send] { color: #75715e; } | |
.message[type=debug_receive] { color: #75715e; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log-view: | |
font-size: 10.0 | |
nickname-format: '%n ' | |
scroller-highlight-color: '#d33682' | |
input-text: | |
font-family: 'Monaco' | |
font-size: 10.0 | |
background-color: '#272822' | |
color: '#ffffff' | |
selected: | |
background-color: '#eee8d5' | |
member-list: | |
font-family: 'Monaco' | |
font-size: 10.0 | |
color: '#ffffff' | |
background-color: '#272822' | |
operator: | |
color: '#ffffff' | |
selected: | |
color: '#ffffff' | |
background: | |
top-line-color: '#75715e' | |
bottom-line-color: '#75715e' | |
top-color: '#75715e' | |
bottom-color: '#75715e' | |
server-tree: | |
font-family: 'Monaco' | |
font-size: 10.0 | |
background-color: '#272822' | |
highlight: | |
color: '#d33682' | |
newtalk: | |
color: '#fd971f' | |
unread: | |
color: '#fd971f' | |
normal: | |
active: | |
color: '#ffffff' | |
inactive: | |
color: '#ccc' | |
selected: | |
active: | |
color: '#ffffff' | |
inactive: | |
color: '#888' | |
background: | |
top-line-color: '#75715e' | |
bottom-line-color: '#75715e' | |
top-color: '#75715e' | |
bottom-color: '#75715e' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment