How to match a custom module to the theme

So, I am reading a tutorial and now stuck at “This module is being built for my ContentBox Website, so I want the module to match the rest of the website, how do I do that”.
Is there a tutorial for that or can anyone give me a jump start for that?

Thanks!

Hi Marco,

Add this to your ModuleConfig.cfc

// Layout Settings
layoutSettings = {
defaultLayout = “lay_main”
};

Make sure your layout is defined in your ColdBox.cfc

//Layout Settings
layoutSettings = {
defaultLayout = “lay_main”
};