diff --git a/chip.js b/chip.js
index c1fadc5..f1610f1 100644
--- a/chip.js
+++ b/chip.js
@@ -42,8 +42,11 @@ class Chip extends IgniteElement {
.child(
new slot(this),
new button()
- .class("btn ml-1 p-0")
- .child(``)
+ .class("btn ml-2 p-0")
+ .child(``)
+ .style("color", this.color)
+ .style("line-height", "1")
+ .style("border", "none")
.onClick(() => this.onDelete())
);
}