From 95a0a21877b1ee904da3bc3904c48292b87bd9ae Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Mon, 30 Sep 2024 09:15:12 +0100 Subject: [PATCH] Introduce gold brand color --- assets/js/app.js | 2 +- assets/tailwind.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/app.js b/assets/js/app.js index d5e278af..67d1a621 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -29,7 +29,7 @@ let liveSocket = new LiveSocket("/live", Socket, { }) // Show progress bar on live navigation and form submits -topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"}) +topbar.config({barColors: {0: "#FD4F00"}, shadowColor: "rgba(0, 0, 0, .3)"}) window.addEventListener("phx:page-loading-start", _info => topbar.show(300)) window.addEventListener("phx:page-loading-stop", _info => topbar.hide()) diff --git a/assets/tailwind.config.js b/assets/tailwind.config.js index 51daf465..b1ef0318 100644 --- a/assets/tailwind.config.js +++ b/assets/tailwind.config.js @@ -14,7 +14,7 @@ module.exports = { theme: { extend: { colors: { - brand: "#FD4F00", + brand: "#D4AF37", } }, },