From 110b790b0c8d7cb2a4c118e5f634a3b92b27a718 Mon Sep 17 00:00:00 2001 From: kek7198 Date: Mon, 6 Dec 2021 14:37:22 -0600 Subject: [PATCH] fix --- files/static/src/main.css | 6 ++++++ tailwind.config.js | 1 + 2 files changed, 7 insertions(+) diff --git a/files/static/src/main.css b/files/static/src/main.css index a49ab1c03..86677f5a4 100644 --- a/files/static/src/main.css +++ b/files/static/src/main.css @@ -115,6 +115,12 @@ .badge { @apply px-1 py-0.5 text-sm text-shadow-light font-bold leading-normal rounded bg-gradient-to-t; } +.badge-pink { + @apply from-pink-600 to-pink-500 text-white; +} +.badge-purple { + @apply from-purple-600 to-purple-500 text-white; +} .badge-red { @apply from-red-600 to-red-500 text-white; } diff --git a/tailwind.config.js b/tailwind.config.js index e9af6659e..4416093e1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -23,6 +23,7 @@ module.exports = { black: colors.black, white: colors.white, pink: colors.pink, + purple: colors.purple, green: colors.green, red: colors.red, yellow: colors.amber,