Hello
Just a suggestion about colors. I think it would be a good idea to define colors as css vars in theme css files, instead of just hardcoded
So we can use the color by its name in any style rule, and if we change the theme all colors are updated right.
Now if we define our own style rule I have to use color code
.myBoxnew{
background-color: #f2f9fe !important;
color: #000 !important;
}
If I change de W3.css theme colors, we have to search and replace every code color, used in our own styles rules, for a proper value from the new theme colors.