From aa38a24d5be6e39cf697c4e78774b938d075ed09 Mon Sep 17 00:00:00 2001 From: Christophe K <ckforall@gmail.com> Date: Sat, 1 Jun 2019 01:19:08 +0200 Subject: [PATCH] Update README.md --- README.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b00f27..c970fae 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,29 @@ # Dark THEME LIBRENMS -dark theme for librenms based on mono theme from librenms \ No newline at end of file +dark theme for librenms based on mono theme from librenms + +/* INSTALLATION ADD THIS BELOW TO YOUR CONFIG.PHP */ + +/* SEEE MORE @ https://github.com/librenms/librenms/blob/master/includes/defaults.inc.php */ +/* + +### DARK MODE +// rtext color graph +$config['rrdgraph_def_text_color'] = 'ffffff'; + +// Set to TRUE if you want to display the 95% based on the highest value. (aka real 95%) +$config['overlib_defaults'] = ",FGCOLOR,'#fff', BGCOLOR, '#000', BORDER, 5, CELLPAD, 4, CAPCOLOR, '#555555', TEXTCOLOR, '#ffffff'"; + +// Set this to false if you want to disable the mouseover popup graphs +$config['web_mouseover'] = false; + +### custom style +# uncomment line below and replace the logo with yours +# $config['title_image'] = "images/custom/librenms_logo_light_ck.png"; +# Create a sub dir in html/css folder and create a css files +$config['webui']['custom_css'][] = "css/custom/styles.css"; + +### https://docs.librenms.org/Support/Configuration/#webui-settings +## this add style is based on mono theme +$config['site_style'] = "mono"; +*/ -- GitLab