templates/backend/base/_theme_switcher.html.twig line 1

Open in your IDE?
  1. <button class="btn btn-grd btn-grd-primary position-fixed bottom-0 end-0 m-3 d-flex align-items-center gap-2" type="button" data-bs-toggle="offcanvas" data-bs-target="#staticBackdrop">
  2.     <i class="material-icons-outlined">tune</i>Customize
  3. </button>
  4. <div class="offcanvas offcanvas-end" data-bs-scroll="true" tabindex="-1" id="staticBackdrop">
  5.     <div class="offcanvas-header border-bottom h-70">
  6.         <div class="">
  7.             <h5 class="mb-0">Theme Customizer</h5>
  8.             <p class="mb-0">Customize your theme</p>
  9.         </div>
  10.         <a href="javascript:;" class="primaery-menu-close" data-bs-dismiss="offcanvas">
  11.             <i class="material-icons-outlined">close</i>
  12.         </a>
  13.     </div>
  14.     <div class="offcanvas-body">
  15.         <div>
  16.             <p>Theme variation</p>
  17.             <div class="row g-3">
  18.                 <div class="col-12 col-xl-6">
  19.                     <input type="radio" class="btn-check" name="theme-options" id="BlueTheme" checked>
  20.                     <label class="btn btn-outline-secondary d-flex flex-column gap-1 align-items-center justify-content-center p-4" for="BlueTheme">
  21.                         <span class="material-icons-outlined">contactless</span>
  22.                         <span>Blue</span>
  23.                     </label>
  24.                 </div>
  25.                 <div class="col-12 col-xl-6">
  26.                     <input type="radio" class="btn-check" name="theme-options" id="LightTheme">
  27.                     <label class="btn btn-outline-secondary d-flex flex-column gap-1 align-items-center justify-content-center p-4" for="LightTheme">
  28.                         <span class="material-icons-outlined">light_mode</span>
  29.                         <span>Light</span>
  30.                     </label>
  31.                 </div>
  32.                 <div class="col-12 col-xl-6">
  33.                     <input type="radio" class="btn-check" name="theme-options" id="DarkTheme">
  34.                     <label class="btn btn-outline-secondary d-flex flex-column gap-1 align-items-center justify-content-center p-4" for="DarkTheme">
  35.                         <span class="material-icons-outlined">dark_mode</span>
  36.                         <span>Dark</span>
  37.                     </label>
  38.                 </div>
  39.                 <div class="col-12 col-xl-6">
  40.                     <input type="radio" class="btn-check" name="theme-options" id="SemiDarkTheme">
  41.                     <label class="btn btn-outline-secondary d-flex flex-column gap-1 align-items-center justify-content-center p-4" for="SemiDarkTheme">
  42.                         <span class="material-icons-outlined">contrast</span>
  43.                         <span>Semi Dark</span>
  44.                     </label>
  45.                 </div>
  46.                 <div class="col-12 col-xl-6">
  47.                     <input type="radio" class="btn-check" name="theme-options" id="BoderedTheme">
  48.                     <label class="btn btn-outline-secondary d-flex flex-column gap-1 align-items-center justify-content-center p-4" for="BoderedTheme">
  49.                         <span class="material-icons-outlined">border_style</span>
  50.                         <span>Bordered</span>
  51.                     </label>
  52.                 </div>
  53.             </div>
  54.             <!--end row-->
  55.         </div>
  56.     </div>
  57. </div>