I'm currently working on a palette board project and facing some challenges when switching to a different theme.
The initial page is set to have a Warm color palette, but I intend to alter this once the user clicks on the All theme option.
Users will be able to select various themes by clicking on a dropdown menu similar to the image I've shared.
Below are some images that depict my vision for this project.
* {
box-sizing:border-box;
}
body {
margin:0;
color: #FFF;
}
.board {
letter-spacing: 1px;
}
/* other CSS styling properties */
<html lang="en">
<head>
<meta charset="utf-8">
<title>Omnibag Project</title>
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
/* HTML body content */
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://use.typekit.net/hoc0zbs.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<script>
/* JavaScript script for handling user interactions */
</script>
https://i.stack.imgur.com/NVgHd.pnghttps://i.stack.imgur.com/krC9J.png