1. DLP Flash Christmas Competition + Writing Marathon 2024!

    Competition topic: Magical New Year!

    Marathon goal? Crank out words!

    Check the marathon thread or competition thread for details.

    Dismiss Notice
  2. Hi there, Guest

    Only registered users can really experience what DLP has to offer. Many forums are only accessible if you have an account. Why don't you register?
    Dismiss Notice
  3. Introducing for your Perusing Pleasure

    New Thread Thursday
    +
    Shit Post Sunday

    READ ME
    Dismiss Notice

DLP Chatzilla Theme

Discussion in 'General Discussion' started by pdo91, Feb 6, 2011.

  1. pdo91

    pdo91 Professor DLP Supporter

    Joined:
    Jan 11, 2009
    Messages:
    495
    Location:
    Colorado
    I recently got annoyed with all the crappy Chatzilla motifs out there and ended up writing a DLP themed one.

    Here's a preview.

    Code:
    @import url(output-base.css);
     
     body.chatzilla-body {
         background: #21301f;
         color: #BAD6C2;
     }
     
     a.chatzilla-link {
         font-weight: bold;
         color: #93BE91;
     }
     
     .header-outer {
         background-color: #21301f;
     }
     
     .header {
         color: darkslategrey;
         background-color: #0a1c0b;
         border: 1px #93BE91 solid;
         -moz-border-radius: 7px;
     }
     
     #splash {
         color: #BAD6C2;
     }
     
     #usr-descnodes,
     #ch-topicnodes {
         color: #BAD6C2;
     }
     
     .progress-fg {
         background-color: darkslategrey;
     }
     
     [condition] {
         font-weight: bold;
     }
     
     [condition="red"] {
         color: #ae4141;
     }
     
     [condition="yellow"] {
         color: #CD6600;
     }
     
     [condition="green"] {
         color: #BAD6C2;
     }
     
     .msg[msg-type="PRIVMSG"] .msg-data,
     .msg[msg-type="ACTION"] .msg-data {
         background-color: #21301f;
     }
     
     .msg[msg-type="HELLO"] .msg-data a.chatzilla-link {
         color: #BAD6C2;
     }
     
     .msg[msg-type="JOIN"] .msg-data a.chatzilla-link,
     .msg[msg-type="PART"] .msg-data a.chatzilla-link {
         font-weight: bold;
         color: #93BE91;
     }
     
     .msg[msg-type="ERROR"] .msg-data a.chatzilla-link,
     .msg[msg-type="DISCONNECT"] .msg-data a.chatzilla-link {
         font-weight: bold;
         color: white;
     }
     
     .msg[msg-type="KICK"] .msg-data a.chatzilla-link {
         color: #21301f;
     }
     
     .msg[msg-type="NOTICE"] .msg-data a.chatzilla-link {
         color: #3DF542;
     }
     
     .msg[msg-type="QUIT"] .msg-data a.chatzilla-link {
         color: #21301f;
     }
     
     .chatzilla-rheet {
         color: #34D238 !important;
     }
     
     .msg-type {
         color: #93BE91;
         font-weight: bold;
     }
     
     .msg-user a.chatzilla-link,
     .msg-user {
         color: #93BE91 !important;
         font-weight: bold;
     }
     
     .msg[mark="even"] .msg-data {
         color: #BAD6C2;
     }
     
     .msg[msg-type="JOIN"] .msg-data,
     .msg[msg-type="PART"] .msg-data {
         color: #BAD6C2;
         background-color: #0a1c0b;
         font-weight: bold;
         -moz-border-radius: 5px 5px 5px 5px;
     }
     
     .msg[msg-type="QUIT"] .msg-data {
         background: #BAD6C2;
         color: #0a1c0b;
         font-weight: bold;
         -moz-border-radius: 5px 5px 5px 5px;
     }
     
     .msg[msg-type="HELLO"] .msg-data {
         background: #21301f;
         color: #BAD6C2;
         -moz-border-radius: 5px 5px 5px 5px;
         font-weight: bold;
     }
     
     .msg[msg-type="ERROR"] .msg-data,
     .msg[msg-type="DISCONNECT"] .msg-data {
         -moz-border-radius: 5px 5px 5px 5px;
         background: #ae4141;
         color: white;
     }
     
     .msg[msg-type="USAGE"] .msg-data {
         color: #BAD6C2;
     }
     
     .msg[msg-type="ACTION"] .msg-data {
         color: #BAD6C2;
         font-style: italic;
     }
     
     .msg[msg-type="NICK"] .msg-data {
         color: #BAD6C2;
         background-color: #0a1c0b;
         font-weight: bold;
     }
     
     .msg[msg-type="NOTICE"] .msg-data {
         color: #34D238;
         font-weight: bold;
     }
     
     .msg[msg-type="MODE"] .msg-data {
         color: #BAD6C2;
         font-weight: bold;
     }
     
     .msg[msg-type="KICK"] .msg-data {
         color: #0a1c0b;
         background: #34D238;
         font-weight: bold;
         -moz-border-radius: 5px 5px 5px 5px;
     }
     
     .msg[important="true"] .msg-user {
         background: #0a1c0b;
         -moz-border-radius: 5px 0px 0px 5px;
     }
     
     .msg[important="true"] .msg-data {
         background: #0a1c0b;
     }
     
     .msg-user:before,
     .msg-user:after {
         color: #BAD6C2;
     }
     
     .msg[msg-user$="ME!"] .msg-user:before,
     .msg[msg-user$="ME!"] .msg-user:after {
         color: #BAD6C2;
     }
     
    This one's specifically for Chatzilla, but it's pretty basic stuff. While I don't know much about other IRC clients, I'm sure a bit of cut-&-paste will get this to run on anything that accepts CSS themes. If someone more enterprising than me would like to whip something up for mIRC and other clients, it would be cool to have everything in one place.

    I also included some lighter green (which you can see here - it's the same color you get when you hover over links on DLP proper) for system messages and so you can laugh at people who get kicked. It's the only part of the theme that's not in sync with the dark green background/pale text style, so if it bugs you, the hex colors are #34D238 and #3DF542 - a quick ctrl+f and you can change it to something that works for you.
     
    Last edited: Feb 8, 2011
  2. Militis

    Militis Supreme Mugwump

    Joined:
    Jun 24, 2008
    Messages:
    1,683
    Location:
    Online
    Nicely done.

    filler.
     
  3. mknote

    mknote 1/3 of the Note Bros. DLP Supporter

    Joined:
    Apr 14, 2009
    Messages:
    1,383
    Gender:
    Male
    Location:
    Melbourne, Florida, United States
    This'll be useful if I'm ever allowed back on IRC. Nicely done.
     
    Oz
  4. Oz

    Oz For Zombie. Moderator DLP Supporter

    Joined:
    Jan 31, 2008
    Messages:
    9,027
    Gender:
    Female
    Location:
    Baile Átha Cliath
  5. Militis

    Militis Supreme Mugwump

    Joined:
    Jun 24, 2008
    Messages:
    1,683
    Location:
    Online
    I'm in the process of trying to figure out mIRC...

    Militis' head explodes.
     
  6. Oz

    Oz For Zombie. Moderator DLP Supporter

    Joined:
    Jan 31, 2008
    Messages:
    9,027
    Gender:
    Female
    Location:
    Baile Átha Cliath
    Eh, mIRC's easy to get running. The only thing is the menus are laid out terribly, and it now locks down when the trial runs out. Check out XChat-WDK
     
    Last edited: Feb 6, 2011
  7. Militis

    Militis Supreme Mugwump

    Joined:
    Jun 24, 2008
    Messages:
    1,683
    Location:
    Online
    I use(d) xchat in Linux. It's awesome and easy to theme.
     
  8. Zennith

    Zennith Pebble Wrestler ~ Prestige ~

    Joined:
    Jun 21, 2009
    Messages:
    175
    Location:
    The Capitol
    High Score:
    1,928

    Uh, technically it locks down. Although I'm still able to make it work after the trial has run out...
     
  9. Oz

    Oz For Zombie. Moderator DLP Supporter

    Joined:
    Jan 31, 2008
    Messages:
    9,027
    Gender:
    Female
    Location:
    Baile Átha Cliath
    Nah, one day you won't be able to, and that seems to be fairly arbitrarily decided.
     
  10. Zennith

    Zennith Pebble Wrestler ~ Prestige ~

    Joined:
    Jun 21, 2009
    Messages:
    175
    Location:
    The Capitol
    High Score:
    1,928
    I shouldn't be able to now. It says I have to register and pay 20 bucks. However, as long as I click register and then wait a few, it lets me hit continue without verifying that I've actually bought it.
     
  11. Grinning Lizard

    Grinning Lizard Supreme Mugwump

    Joined:
    Sep 25, 2010
    Messages:
    1,662
    Location:
    United Kingdom
    Which is what I did for a few months, including skipping updates, etc, until it then one day just didn't work. Chatzilla it is.

    Speaking of which, nice theme.
     
  12. Seratin

    Seratin Proudmander –§ Prestigious §– DLP Supporter

    Joined:
    Oct 14, 2007
    Messages:
    293
    Location:
    Dún na ngall
    High Score:
    5,792
    Well, Pdo went above and beyond the call of duty to fix a few problems I had while trying to get it up and running. Official awesome points awarded. <3
     
  13. silverlasso

    silverlasso Minister of Magic DLP Supporter

    Joined:
    Dec 7, 2007
    Messages:
    1,302
    Location:
    San Francisco
    Nice work, although I'm not too impressed by Chatzilla itself.

    Anyone who uses OS X should try out Textual. There's a full-featured trial that lasts for 30 days or so; if you like it, PM me and I can compile a non-trial version for you (since it's open source). One caveat: DCC doesn't work, but there's Colloquy for that.
     
  14. Gizmore

    Gizmore Minister of Swedish Affairs DLP Supporter

    Joined:
    Jul 11, 2006
    Messages:
    787
    Location:
    Sweden
    mIRC is awesome, with some basic scripts and moding, you can get it to do anything! (it's worth $20 gais)
     
  15. Seratin

    Seratin Proudmander –§ Prestigious §– DLP Supporter

    Joined:
    Oct 14, 2007
    Messages:
    293
    Location:
    Dún na ngall
    High Score:
    5,792
    See, everyone always says this but I'm prett happy with Chatzilla. It does everything I want it to, its free and I'm used to it. Unless mIRC can make me ice-cream then atm, I'm good.
     
  16. Oz

    Oz For Zombie. Moderator DLP Supporter

    Joined:
    Jan 31, 2008
    Messages:
    9,027
    Gender:
    Female
    Location:
    Baile Átha Cliath
  17. silverlasso

    silverlasso Minister of Magic DLP Supporter

    Joined:
    Dec 7, 2007
    Messages:
    1,302
    Location:
    San Francisco
    I scream, you scream, we all scream for ice cream!

    mIRC is decent, but I don't really like the packaged themes and don't want to spend the time tracking down a good one for a platform I rarely use. Thus, my preferred Windows client is XChat.
     
  18. Militis

    Militis Supreme Mugwump

    Joined:
    Jun 24, 2008
    Messages:
    1,683
    Location:
    Online
    These guys are right. And awesome.

    Also, I'm working on an XChat theme. I'll post it here when I'm done.
     
  19. Oz

    Oz For Zombie. Moderator DLP Supporter

    Joined:
    Jan 31, 2008
    Messages:
    9,027
    Gender:
    Female
    Location:
    Baile Átha Cliath
    argentumlariot, check out NNS for mIRC. It's a lot sexier than vanilla mIRC.
     
Loading...