diff --git a/layouts/partials/_relearn/boxStyle.gotmpl b/layouts/partials/_relearn/boxStyle.gotmpl
index 61eb190d77..913c95206f 100644
--- a/layouts/partials/_relearn/boxStyle.gotmpl
+++ b/layouts/partials/_relearn/boxStyle.gotmpl
@@ -18,7 +18,29 @@
 	) }}
 		{{- if eq .identifier $style }}
 			{{- $title := .identifier | T }}
-			{{- $set = dict "identifier" .identifier "style" $style "title" $title "icon" .icon }}
+			{{- $set = dict "style" $style "title" $title "icon" .icon }}
+			{{- break }}
+		{{- end }}
+	{{- end }}
+{{- end }}
+{{- if not $set }}
+	{{- range (slice
+		(dict "identifier" "primary")
+		(dict "identifier" "secondary")
+		(dict "identifier" "accent")
+		(dict "identifier" "blue")
+		(dict "identifier" "cyan")
+		(dict "identifier" "green")
+		(dict "identifier" "grey")
+		(dict "identifier" "magenta")
+		(dict "identifier" "orange")
+		(dict "identifier" "red")
+		(dict "identifier" "default")
+		(dict "identifier" "transparent")
+		(dict "identifier" "code")
+	) }}
+		{{- if eq .identifier $style }}
+			{{- $set = dict "style" $style "title" "" "icon" "" }}
 			{{- break }}
 		{{- end }}
 	{{- end }}
diff --git a/layouts/partials/shortcodes/tree.html b/layouts/partials/shortcodes/tree.html
index 46b43c0161..151c4490f7 100644
--- a/layouts/partials/shortcodes/tree.html
+++ b/layouts/partials/shortcodes/tree.html
@@ -13,14 +13,14 @@
 		{{- $classes := split $icon " " }}
 		{{- if eq (len $classes) 1 }}
 			{{- $boxStyle := partial "_relearn/boxStyle.gotmpl" (dict "style" $color) }}
-			{{- if $boxStyle.identifier }}
+			{{- if $boxStyle.style }}
 				{{- $replacement = printf `<li><i class="fa-fw fas fa-%s cstyle %s"></i><span>%s</span>%s` $icon $color $name $rest }}
 			{{- else }}
 				{{- $replacement = printf `<li><i class="fa-fw fas fa-%s" style="color: %s;"></i><span>%s</span>%s` $icon $color $name $rest }}
 			{{- end }}
 		{{- else }}
 			{{- $boxStyle := partial "_relearn/boxStyle.gotmpl" (dict "style" $color) }}
-			{{- if $boxStyle.identifier }}
+			{{- if $boxStyle.style }}
 				{{- $replacement = printf `<li><i class="%s cstyle %s"></i><span>%s</span>%s` $icon $color $name $rest }}
 			{{- else }}
 				{{- $replacement = printf `<li><i class="%s" style="color: %s;"></i><span>%s</span>%s` $icon $color $name $rest }}
diff --git a/layouts/partials/version.txt b/layouts/partials/version.txt
index 5fc8e52542..0467326a21 100644
--- a/layouts/partials/version.txt
+++ b/layouts/partials/version.txt
@@ -1 +1 @@
-7.5.0+c062fd1ed2a28faac56d4693a8f6e236345f9706
\ No newline at end of file
+7.5.0+c5d591c5149619f251e2a6de0392c513b10b31d1
\ No newline at end of file