Using Custom Designs (Skins)

There is a setting to change the skin (overall style for The Dark Eye).

Skin Setting

Currently available skins are:

Immersive Skin

Naked Skin

Why did we add this? There might be a “Dark Mode” skin in the future. Also, you can now more easily add your own CSS stylesheets and all your players can choose their favorite skin themselves.

For Developers

Developers who want to create their own style should basically do the following:

Example

// (s)css style file
.dsa5-myStyleName {
    p { 
        color: darkblue; 
    }
    // ...all my style code
}
Hooks.on("registerDSAstyle", styles => {
    styles["dsa5-myStyleName"] = "Some fancy style name which can also be translated with lang files";
})

See also: