summaryrefslogtreecommitdiffstats
path: root/library/ttk/classicTheme.tcl
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-09-25 19:20:24 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-09-25 19:20:24 (GMT)
commite05a73a1dc281d212fc7f4f6b35e0bc5f4204d9c (patch)
tree8d049405dc06ff0d34571dcba6da598cc9d58992 /library/ttk/classicTheme.tcl
parenteb9183790f07065eb2210b29d6fc9276e49481e1 (diff)
downloadtk-e05a73a1dc281d212fc7f4f6b35e0bc5f4204d9c.zip
tk-e05a73a1dc281d212fc7f4f6b35e0bc5f4204d9c.tar.gz
tk-e05a73a1dc281d212fc7f4f6b35e0bc5f4204d9c.tar.bz2
Fixed [3217462fff] for the alt and classic themes
Diffstat (limited to 'library/ttk/classicTheme.tcl')
-rw-r--r--library/ttk/classicTheme.tcl9
1 files changed, 7 insertions, 2 deletions
diff --git a/library/ttk/classicTheme.tcl b/library/ttk/classicTheme.tcl
index 7e3eff5..e510361 100644
--- a/library/ttk/classicTheme.tcl
+++ b/library/ttk/classicTheme.tcl
@@ -15,6 +15,7 @@ namespace eval ttk::theme::classic {
-selectfg "#000000"
-disabledfg "#a3a3a3"
-indicator "#b03060"
+ -altindicator "#b05e5e"
}
ttk::style theme settings classic {
@@ -49,14 +50,18 @@ namespace eval ttk::theme::classic {
ttk::style configure TCheckbutton -indicatorrelief raised
ttk::style map TCheckbutton \
-indicatorcolor [list \
- pressed $colors(-frame) selected $colors(-indicator)] \
+ pressed $colors(-frame) \
+ selected $colors(-indicator) \
+ alternate $colors(-altindicator)] \
-indicatorrelief {selected sunken pressed sunken} \
;
ttk::style configure TRadiobutton -indicatorrelief raised
ttk::style map TRadiobutton \
-indicatorcolor [list \
- pressed $colors(-frame) selected $colors(-indicator)] \
+ pressed $colors(-frame) \
+ selected $colors(-indicator) \
+ alternate $colors(-altindicator)] \
-indicatorrelief {selected sunken pressed sunken} \
;