| 
									
										
										
										
											2024-09-22 22:12:22 +01:00
										 |  |  | {{- $content := .content -}} | 
					
						
							| 
									
										
										
										
											2025-08-23 15:42:23 +02:00
										 |  |  | {{- $color := .color | default .type | default "" -}}{{- /* Compatibility with previous parameter. */ -}} | 
					
						
							| 
									
										
										
										
											2024-09-22 22:12:22 +01:00
										 |  |  | {{- $class := .class | default "" -}} | 
					
						
							|  |  |  | {{- $border := .border | default false -}} | 
					
						
							| 
									
										
										
										
											2024-12-28 13:50:22 +00:00
										 |  |  | {{- $icon := .icon | default "" -}} | 
					
						
							| 
									
										
										
										
											2024-09-22 22:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-08-23 15:42:23 +02:00
										 |  |  | {{- /* Compatibility with previous names. */ -}} | 
					
						
							|  |  |  | {{- $mapping := (dict | 
					
						
							|  |  |  |   "default" "gray" | 
					
						
							|  |  |  |   "tip" "green" | 
					
						
							|  |  |  |   "info" "blue" | 
					
						
							|  |  |  |   "warning" "yellow" | 
					
						
							|  |  |  |   "error" "red" | 
					
						
							|  |  |  |   "important" "purple" | 
					
						
							|  |  |  |   ) | 
					
						
							|  |  |  | -}} | 
					
						
							|  |  |  | {{- $color = index $mapping $color | default $color | default "gray" -}} | 
					
						
							| 
									
										
										
										
											2025-08-17 19:44:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | {{- $styleClass := newScratch -}} | 
					
						
							| 
									
										
										
										
											2025-08-23 15:42:23 +02:00
										 |  |  | {{- $styleClass.Set "gray" "hx:text-gray-600 hx:bg-gray-100 hx:dark:bg-neutral-800 hx:dark:text-neutral-200 hx:border-gray-200 hx:dark:border-neutral-700" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "purple" "hx:border-purple-200 hx:bg-purple-100 hx:text-purple-900 hx:dark:border-purple-200/30 hx:dark:bg-purple-900/30 hx:dark:text-purple-200" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "indigo" "hx:border-indigo-200 hx:bg-indigo-100 hx:text-indigo-900 hx:dark:border-indigo-200/30 hx:dark:bg-indigo-900/30 hx:dark:text-indigo-200" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "blue" "hx:border-blue-200 hx:bg-blue-100 hx:text-blue-900 hx:dark:border-blue-200/30 hx:dark:bg-blue-900/30 hx:dark:text-blue-200" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "green" "hx:border-green-200 hx:bg-green-100 hx:text-green-900 hx:dark:border-green-200/30 hx:dark:bg-green-900/30 hx:dark:text-green-200" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "yellow" "hx:border-yellow-100 hx:bg-yellow-50 hx:text-yellow-900 hx:dark:border-yellow-200/30 hx:dark:bg-yellow-700/30 hx:dark:text-yellow-200" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "orange" "hx:border-orange-100 hx:bg-orange-50 hx:text-orange-800 hx:dark:border-orange-400/30 hx:dark:bg-orange-400/20 hx:dark:text-orange-300" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "amber" "hx:border-amber-200 hx:bg-amber-100 hx:text-amber-900 hx:dark:border-amber-200/30 hx:dark:bg-amber-900/30 hx:dark:text-amber-200" -}} | 
					
						
							|  |  |  | {{- $styleClass.Set "red" "hx:border-red-200 hx:bg-red-100 hx:text-red-900 hx:dark:border-red-200/30 hx:dark:bg-red-900/30 hx:dark:text-red-200" -}} | 
					
						
							| 
									
										
										
										
											2024-09-22 22:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-29 12:51:42 +00:00
										 |  |  | {{- $borderClass := cond (eq $border true) "hx:border" "" -}} | 
					
						
							| 
									
										
										
										
											2025-08-23 15:42:23 +02:00
										 |  |  | {{- $badgeClass := or ($styleClass.Get $color) ($styleClass.Get "gray") -}} | 
					
						
							| 
									
										
										
										
											2024-09-22 22:12:22 +01:00
										 |  |  | <div class="hextra-badge {{ $class }}"> | 
					
						
							| 
									
										
										
										
											2025-03-29 12:51:42 +00:00
										 |  |  |   <div class="hx:inline-flex hx:gap-1 hx:items-center hx:rounded-full hx:px-2.5 hx:leading-6 hx:text-[.65rem] {{ $borderClass }} {{ $badgeClass }}"> | 
					
						
							| 
									
										
										
										
											2024-12-28 13:50:22 +00:00
										 |  |  |     {{- with $icon -}}{{- partial "utils/icon" (dict "name" . "attributes" "height=12") -}}{{- end -}} | 
					
						
							|  |  |  |     {{- $content -}} | 
					
						
							|  |  |  |   </div> | 
					
						
							| 
									
										
										
										
											2024-09-22 22:12:22 +01:00
										 |  |  | </div> | 
					
						
							|  |  |  | {{- /* Strip trailing newline. */ -}} |