safe-zone prop's default is true, which ensures a visual balance across
all model signatures. This is most likely the best option when the model signatures are used in combination or within
tiles next to each other. When false is set as value, the model signatures come without any safe zone which is
probably preferred when the element is positioned independently.<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="718"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="911"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="boxster"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="cayenne"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="cayman"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="gt3-rs"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="gt3"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="gts"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="macan"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="panamera"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="taycan"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="turbo-s"></p-model-signature>
</div>
<div class="bg-[#ff000033] inline-block me-static-md mt-static-md">
<p-model-signature safe-zone="false" model="turbo"></p-model-signature>
</div>
<script>
</script>
</body>
</html>p-model-signature should be blended with its background, the CSS property
{{ blendMode }} will
produce the best results). Depending on the use case, it may be important to use it together with the CSS property
p-model-signature must be used with the contrast-{high|medium} color for proper blend mode
results.<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<div class="isolate bg-[#00aa3680] inline-block p-static-lg">
<p-model-signature color="contrast-medium" safe-zone="false" class="mix-blend-overlay"></p-model-signature>
</div>
<div class="isolate bg-[#f2f2f280] inline-block p-static-lg">
<p-model-signature color="contrast-medium" safe-zone="false" class="mix-blend-overlay"></p-model-signature>
</div>
<div class="isolate bg-[#1f1f1f80] inline-block p-static-lg">
<p-model-signature color="contrast-medium" safe-zone="false" class="mix-blend-overlay"></p-model-signature>
</div>
<div class="isolate bg-[#c5004280] inline-block p-static-lg">
<p-model-signature color="contrast-medium" safe-zone="false" class="mix-blend-overlay"></p-model-signature>
</div>
<div class="isolate bg-[#e1d4a480] inline-block p-static-lg">
<p-model-signature color="contrast-medium" safe-zone="false" class="mix-blend-overlay"></p-model-signature>
</div>
<div class="isolate bg-[#0099e080] inline-block p-static-lg">
<p-model-signature color="contrast-medium" safe-zone="false" class="mix-blend-overlay"></p-model-signature>
</div>
<script>
</script>
</body>
</html>Experimental

<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<p-model-signature safe-zone="false" class="[--p-model-signature-width:auto]">
<img src="assets/dessert.jpg" alt="Dessert" />
</p-model-signature>
<script>
</script>
</body>
</html>Experimental
<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<p-model-signature safe-zone="false" class="[--p-model-signature-width:auto]">
<video poster="assets/ocean.jpg" src="assets/ocean.mp4" autoplay playsinline loop muted></video>
</p-model-signature>
<script>
</script>
</body>
</html>p-model-signature color can be changed by setting the color prop to inherit and applying some CSS color.
Additionally, the component has some values that can be overridden via CSS custom properties (aka CSS variables):--p-model-signature-width
--p-model-signature-height
<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<p-model-signature color="inherit" class="text-info"></p-model-signature>
<p-model-signature class="[--p-model-signature-width:auto] [--p-model-signature-height:50px] block"></p-model-signature>
<p-model-signature class="[--p-model-signature-width:50px] [--p-model-signature-height:auto] block"></p-model-signature>
<script>
</script>
</body>
</html>