For example, the **fill** channel appearing in the tip here isn’t very useful:  ```js Plot.plot({ grid: true, marks: [ Plot.dot(penguins, { x: "culmen_length_mm", y: "culmen_depth_mm", fill: (d) => d.species === "Adelie" ? "red" : "black", tip: true }) ] }) ```