diff --git a/chat.php b/chat.php
index c1a0eb0..e241790 100644
--- a/chat.php
+++ b/chat.php
@@ -317,7 +317,16 @@ function credit() : string {
}
function meta_html() : string {
- return '';
+ global $db;
+ $colbg='000000';
+ if(!empty($U['bgcolour'])){
+ $colbg=$U['bgcolour'];
+ }else{
+ if($db instanceof PDO){
+ $colbg=get_setting('colbg');
+ }
+ }
+ return '';
}
function form(string $action, string $do='') : string {