Documentation

class WebTheme

A class that represents a complete visual theme configuration.

class WebTheme;

Notes

Examples

// Create a theme with custom colors
const myTheme = new WebTheme()
  .colors({ accent: "#FF5722" })
  .darkColors({ accent: "#FF7043" });

// Apply the theme
setWebTheme(myTheme);

Constructor

Type members

Instance members