I'm having sub-Domains like xyz.in/ab, xyz.in/bc , etc.. which runs in a single server. I need to config different styles for different domain. So I need to change the primary, secondary, ..etc colors dynamically.
ab.scss
$primary: white,
$secondary: grey
bc.scss
$primary: red,
$secondary: light-grey
I need to config different files dynamically based on URL (note: I need change the files dynamically on run time). How can I achieve this?