From 747d741293e064a979d7bf6c143ef969ea6d7629 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 24 May 2026 20:49:44 +0000
Subject: [PATCH] =GMBReview block minor tweaks. Refactored ReferralManager.php and ReferralRoutes.php to utilize the manager for all logic, and CustomTable for table interactions.

---
 base/colours.php |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/base/colours.php b/base/colours.php
new file mode 100644
index 0000000..17d89de
--- /dev/null
+++ b/base/colours.php
@@ -0,0 +1,26 @@
+<?php
+
+$defaults = [
+	'action-0'		=> '#ff0080',
+	'action-50'		=> '#ff2492',
+	'action-100'	=> '#ff47a4',
+	'action-200'	=> '#ff6bb5',
+	'secondary-0'	=> '#D69121',
+	'secondary-50'	=> '#ffc421',
+	'secondary-100'	=> '#ffcd44',
+	'secondary-200'	=> '#ffd768',
+	'light'			=> '#efefef',
+	'light-50'		=> '#e2e2e2',
+	'light-100'		=> '#d5d5d5',
+	'light-200'		=> '#c9c9c9',
+	'dark'			=> '#151515',
+	'dark-50'		=> '#222222',
+	'dark-100'		=> '#2e2e2e',
+	'dark-200'		=> '#3b3b3b',
+	'action-contrast'=> '',
+	'secondary-contrast'=> '',
+];
+
+
+$jvbColours = apply_filters('jvb_colours', $defaults);
+define('JVB_COLOURS', $jvbColours);

--
Gitblit v1.10.0