diff resources/sass/badges.scss @ 0:9d7dcd54c677

Initial Commit and package setup
author luka
date Sat, 23 Aug 2025 22:20:51 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/resources/sass/badges.scss	Sat Aug 23 22:20:51 2025 -0400
@@ -0,0 +1,30 @@
+.badge{
+  &.yellow {
+      background-color: $yellow-100;
+      color: $yellow-700;
+  }
+
+  &.orange {
+      background-color: $orange-100;
+      color: $orange-700;
+  }
+  &.green {
+      background-color: $green-100;
+      color: $green-700;
+  }
+  
+  &.blue {
+      background-color: $blue-100;
+      color: $blue-700;
+  }
+
+  &.gray {
+      background-color: $gray-200;
+      color: $gray-700;
+  }
+
+  &.red {
+      background-color: $red-100;
+      color: $red-700;
+  }
+}