@extends('layout.with-main') @section('title') {{ __('stat.stats') }} - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('page', 'page__stats--themes') @section('main')

Site stylesheets

@forelse ($siteThemes as $siteTheme) @empty @endforelse
{{ $loop->iteration }} @switch($siteTheme->total_style) @case('0') Light theme @break @case('1') Galactic theme @break @case('2') Dark blue theme @break @case('3') Dark green theme @break @case('4') Dark pink theme @break @case('5') Dark purple theme @break @case('6') Dark red theme @break @case('7') Dark teal theme @break @case('8') Dark yellow theme @break @case('9') Cosmic void theme @break @case('10') Nord theme @break @case('11') Revel theme @break @case('12') Material design 3 light theme @break @case('13') Material design 3 dark theme @break @case('14') Material design 3 amoled theme @break @case('15') Material design 3 navy theme @break @endswitch Used by {{ $siteTheme->value }} users
None used

External CSS stylesheets (stacks on top of above site theme)

@forelse ($customThemes as $customTheme) @empty @endforelse
{{ $loop->iteration }} {{ $customTheme->custom_css }} Used by {{ $customTheme->value }} users
None used

Standalone CSS stylesheets (no site theme used)

@forelse ($standaloneThemes as $standaloneTheme) @empty @endforelse
{{ $loop->iteration }} {{ $standaloneTheme->standalone_css }} Used by {{ $standaloneTheme->value }} users
None used
@endsection