tag property or directly inside a slot.The quick brown fox jumps over the lazy dog
<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<p-heading tag="h3">
The quick brown fox jumps over the lazy dog
</p-heading>
<p-heading>
<h3>
The quick brown fox jumps over the lazy dog
</h3>
</p-heading>
<script>
</script>
</body>
</html>inherit can also be used to define a custom color.<!doctype html>
<html lang="en" class="scheme-light-dark">
<head>
<title></title>
</head>
<body class="bg-canvas">
<p-heading tag="h3" color="inherit" class="text-[deeppink]">
The quick brown fox jumps over the lazy dog
</p-heading>
<script>
</script>
</body>
</html>