d8593d89c0
* Move the forum box colors into dedicated styles that are easier to override for the new theme colors. * Updated the themes so forums and comment thread background cards now match your chosen style. * Add yellow and orange theme variants.
24 lines
604 B
CSS
24 lines
604 B
CSS
:root {
|
|
--bulma-primary-h: 15deg;
|
|
--bulma-primary-l: 63%;
|
|
--bulma-link-h: 12deg;
|
|
--bulma-link-l: 30%;
|
|
--bulma-scheme-h: 0;
|
|
}
|
|
|
|
/*
|
|
* Forum Colors: with all the nested boxes, Bulma's default color scheme is
|
|
* too limited for a good experience.
|
|
*/
|
|
.nonshy-forum-box-1 {
|
|
/* Outermost box: Forum or Thread top-level wrappers */
|
|
background-color: #ffd1d1;
|
|
}
|
|
.nonshy-forum-box-2 {
|
|
/* Nested box: "Latest Post" on Forum-level views */
|
|
background-color: #f1d8d0;
|
|
}
|
|
.nonshy-forum-box-3 {
|
|
/* Nested box: Topics/Posts/Users/View counters */
|
|
background-color: #ffd0c2;
|
|
} |