Web Components & Shadow DOM

How can you style elements in the Shadow DOM from outside the component?
my-element {
  --primary-color: blue;
  --padding: 20px;
}

/* Inside Shadow DOM */
:host {
  padding: var(--padding);
  color: var(--primary-color);
}
Next Question (7/20)