<script>
export let color = `red`;
</script>
<p style="color: {color} !important; font-size: 20px !important; opacity: 1;">{color}</p>
<style>
p {
color: blue !important;
font-size: 10px !important;
}
</style>