What is Layouts covers?

Layouts covers all theme configuration settings if you want to apply manually in project.

i.e. if you want apply dark theme then you can directly add dark class in body.

You can set below theme, rtl style etc.

  • Theme Style- You can set manually by adding theme class from [light, dark] to body.
  •                                               
      <body class="dark">
        ....
      </body>
                                                  
  • RTL Style- You can set manually by changing dir attribute from [ltr, rtl] to html.
  •   
      <html dir="rtl">
        <head> 
          .....
        </head>
        <body>
          ....
        </body>
      </html>
                                                

Note: You can use such as an all above style using any combination. there is no restriction.