diff --git a/ExampleTheme.def b/ExampleTheme.def new file mode 100644 index 00000000..58556733 --- /dev/null +++ b/ExampleTheme.def @@ -0,0 +1,5 @@ +[Colors] +Background= +Text= +Sidebar= +Footer= \ No newline at end of file diff --git a/includes/_Theming.au3 b/includes/_Theming.au3 index 9d95fe06..e2419237 100644 --- a/includes/_Theming.au3 +++ b/includes/_Theming.au3 @@ -120,7 +120,7 @@ Func _SetTheme() ;;; Case FileExists(@ScriptDir & "\theme.def") $aColors[0] = IniRead(@ScriptDir & "\theme.def", "Colors", "Background", $aColors[0]) - $aColors[1] = IniRead(@ScriptDir & "\theme.def", "Colors", "Test", $aColors[1]) + $aColors[1] = IniRead(@ScriptDir & "\theme.def", "Colors", "Text", $aColors[1]) $aColors[2] = IniRead(@ScriptDir & "\theme.def", "Colors", "Sidebar", $aColors[2]) $aColors[3] = IniRead(@ScriptDir & "\theme.def", "Colors", "Footer", $aColors[3]) Case Else