-
Notifications
You must be signed in to change notification settings - Fork 10
Themes
Dhwty edited this page Mar 20, 2013
·
2 revisions
Getting Started | Compile It Yourself! | Config Files
These are replacements for default.qss, default.css, and colors.ini to provide other colour combinations for the client. Got one you'd like added? Stick it on Pastebin and note me a link.
This is based on the look of F-Chat 1.0 with the Dark theme on the site.
default.qss:
/* The main display area. */
QTextBrowser#chatoutput {
background-color:#202020;
color:#eeeeee;
font-size:15px;
padding-bottom:4px;
border-top:1px solid #000000;
border-left:1px solid #000000;
border-right:1px solid #666666;
border-bottom:1px solid #666666;
}
/* Userlist on right. */
QListWidget#userlist {
background-color:#202020;
border-top:1px solid #000000;
border-left:1px solid #000000;
border-right:0px;
border-bottom:1px solid #666666;
}
/* Input area. */
QPlainTextEdit#chatinput {
background-color:#FFFFFF;
border-top:1px solid #000000;
border-left:1px solid #000000;
border-right:1px solid #888888;
border-bottom:1px solid #888888;
color:#000000;
border-radius:3px;
}
QMainWindow {
background-color:#444444;
color:#ffffff;
}
QLabel {
color:#ffffff;
font-size:15px;
}
QAbstractScrollArea {
background-color:#444444;
color:#ffffff;
border:0px;
border-left:0px solid #000000;
border-bottom:0px solid #000000;
}