|
@@ -101,12 +101,18 @@ if $ARGS[0] = 'apply_dynamic':
|
|
|
theme['fcolor'] = rgb(255, 255, 255)
|
|
|
$theme['fcolor'] = "#FFFFFF"
|
|
|
|
|
|
+ theme['table_bg'] = rgb(32, 32, 32)
|
|
|
+ theme['table_bg_alt'] = rgb(48, 48, 48)
|
|
|
+
|
|
|
$theme['table_bg'] = "#202020"
|
|
|
$theme['table_bg_alt'] = "#303030"
|
|
|
else
|
|
|
theme['fcolor'] = rgb(0, 0, 0)
|
|
|
$theme['fcolor'] = "#000000"
|
|
|
|
|
|
+ theme['table_bg'] = rgb(255, 255, 255)
|
|
|
+ theme['table_bg_alt'] = rgb(230, 242, 255)
|
|
|
+
|
|
|
$theme['table_bg'] = "#FFFFFF"
|
|
|
$theme['table_bg_alt'] = "#E6F2FF"
|
|
|
end
|
|
@@ -175,6 +181,9 @@ elseif $ARGS[0] = 'set_white':
|
|
|
theme['fsize'] = 12
|
|
|
$theme['fname'] = 'Tahoma'
|
|
|
|
|
|
+ theme['table_bg'] = rgb(255, 255, 255)
|
|
|
+ theme['table_bg_alt'] = rgb(230, 242, 255)
|
|
|
+
|
|
|
$theme['table_bg'] = "#FFFFFF"
|
|
|
$theme['table_bg_alt'] = "#E6F2FF"
|
|
|
|
|
@@ -197,6 +206,9 @@ elseif $ARGS[0] = 'set_black':
|
|
|
theme['fsize'] = 12
|
|
|
$theme['fname'] = 'Tahoma'
|
|
|
|
|
|
+ theme['table_bg'] = rgb(32, 32, 32)
|
|
|
+ theme['table_bg_alt'] = rgb(48, 48, 48)
|
|
|
+
|
|
|
$theme['table_bg'] = "#202020"
|
|
|
$theme['table_bg_alt'] = "#303030"
|
|
|
|
|
@@ -219,6 +231,9 @@ elseif $ARGS[0] = 'set_gray':
|
|
|
theme['fsize'] = 12
|
|
|
$theme['fname'] = 'Tahoma'
|
|
|
|
|
|
+ theme['table_bg'] = rgb(32, 32, 32)
|
|
|
+ theme['table_bg_alt'] = rgb(48, 48, 48)
|
|
|
+
|
|
|
$theme['table_bg'] = "#202020"
|
|
|
$theme['table_bg_alt'] = "#303030"
|
|
|
|
|
@@ -240,8 +255,11 @@ elseif $ARGS[0] = 'set_custom':
|
|
|
theme['fsize'] = custom_theme['fsize']
|
|
|
$theme['fname'] = $custom_theme['fname']
|
|
|
|
|
|
- $theme['table_bg'] = func('shortgs', 'rgb_to_hex', custom_theme['table_bg'])
|
|
|
- $theme['table_bg_alt'] = func('shortgs', 'rgb_to_hex', custom_theme['table_bg_alt'])
|
|
|
+ theme['table_bg'] = custom_theme['table_bg']
|
|
|
+ theme['table_bg_alt'] = custom_theme['table_bg_alt']
|
|
|
+
|
|
|
+ $theme['table_bg'] = func('shortgs', 'rgb_to_hex', theme['table_bg'])
|
|
|
+ $theme['table_bg_alt'] = func('shortgs', 'rgb_to_hex', theme['table_bg_alt'])
|
|
|
end
|
|
|
|
|
|
if $ARGS[0] = 'check_custom_vars':
|