I have a Drupal 8 site with the following Bootstrap 3 theme :
https://bootswatch.com/3/flatly/
This theme is very good but the colors do not match my site.
I like the colors of the following theme :
https://bootswatch.com/3/sandstone/
How to put the colors of this theme in the theme of my site, without retyping all the code to color the elements ?
Is there a way to easily apply color from one theme to another ?
I copied the following files in my theme :
https://bootswatch.com/3/flatly/_variables.scss
https://bootswatch.com/3/flatly/_bootswatch.scss
I want to replace the current theme color with :
$brand-primary: #325D88 !default;
$brand-success: #93C54B !default;
$brand-info: #29ABE0 !default;
$brand-warning: #F47C3C !default;
$brand-danger: #d9534f !default;