unoffical wafrn mirror wafrn.net
atproto social-network activitypub
at angular21 82 lines 2.6 kB view raw
1@switch (colorScheme()) { 2 @case ('default') {} 3 @case ('tan') { 4 <link href="/assets/themes/tan.css" rel="stylesheet" /> 5 } 6 @case ('green') { 7 <link href="/assets/themes/green.css" rel="stylesheet" /> 8 } 9 @case ('gold') { 10 <link href="/assets/themes/gold.css" rel="stylesheet" /> 11 } 12 @case ('red') { 13 <link href="/assets/themes/red.css" rel="stylesheet" /> 14 } 15 @case ('pink') { 16 <link href="/assets/themes/pink.css" rel="stylesheet" /> 17 } 18 @case ('purple') { 19 <link href="/assets/themes/purple.css" rel="stylesheet" /> 20 } 21 @case ('blue') { 22 <link href="/assets/themes/blue.css" rel="stylesheet" /> 23 } 24 @case ('rizzler') { 25 <link href="/assets/themes/rizzler.css" rel="stylesheet" /> 26 } 27 @case ('contrastWater') { 28 <link href="/assets/themes/contrastWater.css" rel="stylesheet" /> 29 } 30 @case ('wafrn98') { 31 <link href="/assets/themes/wafrn98.css" rel="stylesheet" /> 32 } 33 @case ('aqua') { 34 <link href="/assets/themes/aqua.css" rel="stylesheet" /> 35 } 36 @case ('unwafrn') { 37 <link href="/assets/themes/unwafrn.css" rel="stylesheet" /> 38 } 39 @case ('wafrnverse') { 40 <link href="/assets/themes/wafrnverse.css" rel="stylesheet" /> 41 } 42 @case ('dracula') { 43 <link href="/assets/themes/dracula.css" rel="stylesheet" /> 44 } 45 @case ('fan') { 46 <link href="/assets/themes/fan.css" rel="stylesheet" /> 47 } 48 @case ('waffler') { 49 <link href="/assets/themes/waffler.css" rel="stylesheet" /> 50 } 51 @case ('cohfrn') { 52 <link href="/assets/themes/cohfrn.css" rel="stylesheet" /> 53 } 54 @case ('catppuccin_frappe') { 55 <link href="/assets/themes/catppuccin_latte-frappe.css" rel="stylesheet" /> 56 } 57 @case ('catppuccin_macchiato') { 58 <link href="/assets/themes/catppuccin_latte-macchiato.css" rel="stylesheet" /> 59 } 60 @case ('catppuccin_mocha') { 61 <link href="/assets/themes/catppuccin_latte-mocha.css" rel="stylesheet" /> 62 } 63} 64 65@if (additionalStyleModes.centerLayout()) { 66 <link href="/assets/themes/center-column.css" rel="stylesheet" /> 67} 68@if (additionalStyleModes.topToolbar()) { 69 <link href="/assets/themes/top-toolbar.css" rel="stylesheet" /> 70} 71@if (additionalStyleModes.lowContrastSidebar()) { 72 <link href="/assets/themes/low-contrast-sidebar.css" rel="stylesheet" /> 73} 74@if (additionalStyleModes.oldTags()) { 75 <link href="/assets/themes/old-tags.css" rel="stylesheet" /> 76} 77@if (additionalStyleModes.colorfulTags()) { 78 <link href="/assets/themes/colorful-tags.css" rel="stylesheet" /> 79} 80@if (additionalStyleModes.solidCards()) { 81 <link href="/assets/themes/solid-cards.css" rel="stylesheet" /> 82}