diff --git a/pages/css/components/toasts.md b/pages/css/components/toasts.md
index fc67375f..35b28521 100644
--- a/pages/css/components/toasts.md
+++ b/pages/css/components/toasts.md
@@ -82,7 +82,7 @@ Use `.Toast-dismissButton` to allow a user to explicitly dismiss a Toast.
This toast is dismissable.
```
diff --git a/src/toasts/toasts.scss b/src/toasts/toasts.scss
index d5cb9864..081578b3 100644
--- a/src/toasts/toasts.scss
+++ b/src/toasts/toasts.scss
@@ -22,7 +22,6 @@
width: $spacer-3 * 3;
flex-shrink: 0;
color: $text-white;
- fill: $text-white;
background-color: $blue-500;
border-top-left-radius: inherit;
border-bottom-left-radius: inherit;
@@ -40,12 +39,12 @@
&:focus,
&:hover {
- fill: $text-gray;
+ color: $text-gray;
outline: none;
}
&:active {
- fill: $gray-400;
+ color: $gray-400;
}
}