diff options
Diffstat (limited to 'gui/ThemeDefaultXML.cpp')
-rw-r--r-- | gui/ThemeDefaultXML.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gui/ThemeDefaultXML.cpp b/gui/ThemeDefaultXML.cpp index ace3debfc2..db01adb7c3 100644 --- a/gui/ThemeDefaultXML.cpp +++ b/gui/ThemeDefaultXML.cpp @@ -12,7 +12,7 @@ * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software @@ -41,7 +41,10 @@ bool ThemeRenderer::loadDefaultXML() { "<palette>" "<color name = 'red' rgb = '255, 0, 0' />" "<color name = 'green' rgb = '0, 255, 0' />" - "<color name = 'blue' rgb = '0, 0, 255' />" + "<color name = 'blue' rgb = '0, 255, 255' />" + "<color name = 'text_default' rgb = '0, 0, 0' />" + "<color name = 'text_hover' rgb = '255, 255, 255' />" + "<color name = 'text_disabled' rgb = '128, 128, 128' />" "</palette>" "<default fill = 'gradient' fg_color = '255, 255, 255' />" @@ -54,6 +57,10 @@ bool ThemeRenderer::loadDefaultXML() { "<drawstep func = 'square' fill = 'foreground' height = '3' ypos = 'center' fg_color = '0, 0, 0' />" "</drawdata>" + "<drawdata id = 'scrollbar_base' cache = false>" + "<drawstep func = 'roundedsq' stroke = 1 radius = 4 fill = 'none' fg_color = '255, 255, 255' />" + "</drawdata>" + "<drawdata id = 'popup_idle' cache = false>" "<drawstep func = 'square' stroke = 0 fg_color = '0, 0, 0' fill = 'gradient' gradient_start = '214, 113, 8' gradient_end = '240, 200, 25' shadow = 3 />" "<drawstep func = 'triangle' fg_color = '0, 0, 0' fill = 'foreground' width = '12' height = '12' xpos = '-16' ypos = 'center' orientation = 'bottom' />" |