This is not a guide on how to code CSS. The internet has plenty of CSS guides if you'd like to learn how it works.
I've added a description of the different selectors and tags listed in the default palette template. Some of this code has also been re-arranged so similar things are located next to each other. If you understand a tad bit of CSS, this should help you code some palettes.
Let me know if you'd like me to supply some of my favorite apps/websites to code. I'm happy to help!
/*--------------------------------------------------
Set overall site colors
--------------------------------------------------*/
/*Primary = Navbar & Sidebar Colors,*/
.primary {
background-color:#455b2e;
}
/*Secondary = Weather & Mushrooms Infobar Color */
.secondary {
background-color:#667f4d;
}
/*Tertiary = Denpage Buttons & Folders; Forum Trim*/
.tertiary {
background-color:#8aa275;
}
/*Forum Alternate Colors*/
.quatro {
background-color:#efecc8;
}
.forumalt {
background-color:#000000
}
/*--------------------------------------------------
For Quotes in the Forums
--------------------------------------------------*/
blockquote {
background-color:#efecc8;
border-left: 3px solid #8aa275;
}
/*--------------------------------------------------
Chat Colors
--------------------------------------------------*/
.main {
background-color:#b8cca7;
}
.sales {
background-color:#efecc8;
}
/*--------------------------------------------------
Den colors for the Wolf listing
--------------------------------------------------*/
/* Box that contains Wolf Name & Dom */
.wolfheader {
background-color:#fffbcd;
}
/* Box that includes Health/Hunger Bar */
.wolfinfo {
background-color:#beb26c;
}
/*--------------------------------------------------
Page background color
--------------------------------------------------*/
.pgbg {
background-color:#f8f5da;
}
/*--------------------------------------------------
Page Name text
--------------------------------------------------*/
/* Titles on each page including "DEN", "EXPLORE", "FORUMS" */
.headline {
color:#263408;
}
/*--------------------------------------------------
Color setting for decor/gear/food boxes
--------------------------------------------------*/
.imgcustom {
background-color:#f6edb7;
}
/*--------------------------------------------------
Set the tab color in your Den
--------------------------------------------------*/
/* Navigation Menu Color */
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #8aa275;
}
/*--------------------------------------------------
Set the color and font of the menu bar text
--------------------------------------------------*/
/* Navigation Bar Text Color */
.navbar a {
font-family:arial,sans-serif;
color:#f8f5da;
}
/* Navigation DropDown Text Color */
.dropdown .dropbtn {
color:#f8f5da;
}
/* Dropdown Menu Text Color */
.dropdown-content a {
color:#000;
}
/*--------------------------------------------------
Set the tab color for the tabs under your Mailbox
--------------------------------------------------*/
/* Unselected Tabs Colors */
ul.tabbernav li a {
background: #92a882;
}
/* Container BG*/
.tabberlive .tabbertab {
background-color: #efecc8;
}
/* Unselected Tab Hover Colors */
ul.tabbernav li a:hover {
background: #efecc8;
}
/* Active Tab Color */
ul.tabbernav li.tabberactive a {
background-color: #efecc8;
}
/* Active Tab Hover Color */
ul.tabbernav li.tabberactive a:hover {
background-color: #efecc8;
}
/*--------------------------------------------------
Set the form color {includes chat textbox and mailpage textbox}
--------------------------------------------------*/
.iclass {background-color:#c8d4bd; color:#000000; -moz-border-radius: 7px;
border-radius: 7px;}
/*--------------------------------------------------
Set the color of the text in the side bar
--------------------------------------------------*/
.sidebartext { font-family:arial,sans-serif; font-size:15px; color:#dfdcbd; }
/*Links*/
.sidebartext a:link { font-family:arial,sans-serif; font-size:15px; color:#dfdcbd;}
.sidebartext a:hover { font-family:arial,sans-serif; font-size:15px; color:#bdb570;}
.sidebartext a:visited { font-family:arial,sans-serif; font-size:15px; color:#dfdcbd;}
/*--------------------------------------------------
Set the color of the text on the site
--------------------------------------------------*/
.mainlineblack{ font-family:arial,sans-serif; font-size:15px; color:#000; }
.mainlineblack a:link { font-family:arial,sans-serif; font-size:15px; color:#000;}
.mainlineblack a:hover { font-family:arial,sans-serif; font-size:15px; color:#4f2907;}
.mainlineblack a:visited { font-family:arial,sans-serif; font-size:15px; color:#000;}
/*--------------------------------------------------
Set the color of error/valid message after you submit an action
--------------------------------------------------*/
.errormsg {
background-color:#f3d1cc;
}
.validmsg {
background-color:#d7e8d2;
}
/*--------------------------------------------------
WP Buttons
--------------------------------------------------*/
.wpbutton { font-family:arial,sans-serif; font-size:15px; color:#000000; background-color:rgba(0,0,0,0); padding:0px; border:0px; border-radius:0px; border: 0px solid #000000; }
.wpbutton a:link { font-family:arial,sans-serif; font-size:15px; color:#000000; background-color:rgba(0,0,0,0); padding:0px; }
.wpbutton a:visited { font-family:arial,sans-serif; font-size:15px; color:#000000; background-color:rgba(0,0,0,0); padding:0px; }
.wpbutton a:hover { font-family:arial,sans-serif; font-size:15px; color:#000000; background-color:rgba(0,0,0,0); padding:0px; }