#lightIRC {
	width: 100%;
	height: 500px;
}

/* 
 * lightIRC Style Sheet
 * www.lightIRC.com
 *
 * Edit the CSS values and link the Style Sheet to the lightIRC application using the parameter "styleURL".
 * Please contribute new styles back to the lightIRC project!
 *
 * Note: Don't use hyphens for CSS attributes. Write fontSize instead of font-size.
 *
 */

/* Global settings */
lightIRC {
	fontFamily:Verdana;
}

/* Background gradient settings. Set both items to the same value if you want a solid background color */
.backgroundGradientTop {
	color:#2f2e2e;
}
.backgroundGradientBottom {
	color:#666666;
}

/* Configures buttons */
Button {
	cornerRadius:5;
	color:#000000;
	textRollOverColor:#000000;
	textSelectedColor:#000000;
	chromeColor:#e5b421;
}

/* Configures various texts */
Text, Label {
	color:#ffffff;
}

/* Configures popup windows */
Panel, TitleWindow {
	chromeColor:#e5b421;
	backgroundColor:#333333;
	cornerRadius:10;
}

/* Configures the user list and other list elements */
List {
	color:#ffffff;
	rollOverColor:#333333;
	selectionColor:#666666;
	contentBackgroundColor:#2f2e2e;
}

/* Configures the channel list popup and other DataGrid elements */
DataGrid {
	alternatingItemColors:#2f2e2e, #2f2e2e;
	color:#ffffff;
	textRollOverColor:#ffffff;
	textSelectedColor:#ffffff;
	rollOverColor:#333333;
	selectionColor:#666666;
}

/* Configures the main chat area */
TextArea {
	chromeColor:#666666;
	contentBackgroundColor:#2f2e2e;
	color:#ffffff;
	borderColor:#d5d5d5;
}

/* Scrollbar color for the TextArea */
Scroller {
	chromeColor:#e5b421;
}

/* Configures the text input boxes and other TextInput elements*/
TextInput {
	contentBackgroundColor:#2f2e2e;
	color:#ffffff;
}

/* Configures radio buttons */
RadioButton {
	color:#ffffff;
}

/* Configures checkboxes */
CheckBox {
	color:#ffffff;
	textRollOverColor:#ffffff;
	textSelectedColor:#ffffff;
}

/* Configures select lists (used to select camera, microphone and translation) */
ComboBox {
	color:#000000;
	textRollOverColor:#999999;
	textSelectedColor:#ffffff;
}

/* Configures the menu */
.menu {
	backgroundColor:#333333;
}

/* Configures the webcam popup */
.webcamPopup {
	backgroundColor:#666666;
}

/* Configures the button state for an active window */
.buttonActiveWindow {
	chromeColor:#333333;
	color:#ffffff;
	textRollOverColor:#ffffff;
	textSelectedColor:#ffffff;
}

/* Configures the button state when the assigned window is not active */
.buttonInactiveWindow {
	color:#000000;
}

/* Configures the button state when receiving a new information message (join, part, quit, ...) in the assigned window */
.buttonInactiveWindowInfo {
	color:#830000;
}

/* Configures the button state when receiving a new message in the assigned window */
.buttonInactiveWindowMessage {
	color:#ff0000;
}

/* Configures the active state of the bold, underline and translation buttons */
.buttonBoldActive, .buttonUnderlineActive, .buttonTranslationActive {
	color:#ff0000;
}

/* Configures links to other channels or to external URLs */
.channelLink, .addressLink {
	color:#999999;
	textDecoration:underline;
}

/* Configures user names in the chat area */
.userLink {
	color:#999999;
	textDecoration:none;
}

/* Configures the user name of the user himself */
.userSelfLink {
	color:#e5b421;
	textDecoration:none;
}

/* Color of information messages like joins, parts, mode changes, ... */
.infoLine {
	color:#eaeaea;
}

/* Color of channel or query messages */
.messageLine {
	color:#eaeaea;
}

/* Color of user number and topic above the channel area*/
.channelHeader {
	color:#eaeaea;
}