diff --git a/chase/frontend/app/globals.scss b/chase/frontend/app/globals.scss index c12d902b..69ff8685 100644 --- a/chase/frontend/app/globals.scss +++ b/chase/frontend/app/globals.scss @@ -5,9 +5,9 @@ :root { --dmun-primary: #3d7dd2; --dmun-black: #000; - --voting-for: rgb(21 128 61); + --voting-for: #188a42; --voting-abstain: #3d7dd2; - --voting-against: rgb(220 38 38); + --voting-against: #ff3d32; } diff --git a/chase/frontend/components/voting/voting_bar.tsx b/chase/frontend/components/voting/voting_bar.tsx index f5d9cdb6..f72b6124 100644 --- a/chase/frontend/components/voting/voting_bar.tsx +++ b/chase/frontend/components/voting/voting_bar.tsx @@ -54,25 +54,25 @@ export default function VotingBar({
+
{!hideCounter && numberOfVotes > 0 && (
{numberOfVotes}
)} diff --git a/chase/frontend/tailwind.config.js b/chase/frontend/tailwind.config.js index 6cbf30e1..2eb98e57 100644 --- a/chase/frontend/tailwind.config.js +++ b/chase/frontend/tailwind.config.js @@ -25,6 +25,11 @@ module.exports = { icon: "rgb(156 163 175)", text: "rgb(75 85 99)", }, + voting: { + for: "#188a42", + against: "#ff3d32", + abstain: "#3d7dd2", + }, }, }, },