diff --git a/Basalt/plugins/bigfonts.lua b/Basalt/plugins/bigfonts.lua index 2dd01bb..040a508 100644 --- a/Basalt/plugins/bigfonts.lua +++ b/Basalt/plugins/bigfonts.lua @@ -164,6 +164,22 @@ return { return self end, + setBackground = function(self, newColor) + base.setBackground(self, newColor) + if(fontsize>1)then + self:setFontSize(fontsize) + end + return self + end, + + setForeground = function(self, newColor) + base.setForeground(self, newColor) + if(fontsize>1)then + self:setFontSize(fontsize) + end + return self + end, + getFontSize = function(self) return fontsize end, @@ -217,4 +233,4 @@ return { } return object end -} \ No newline at end of file +}