]> gitweb.factorcode.org Git - factor.git/blob - basis/ui/theme/switching/switching.factor
ui.theme.switching: reset ui.gadgets.panes fonts.
[factor.git] / basis / ui / theme / switching / switching.factor
1 ! Copyright (C) 2016 Nicolas PĂ©net.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: assocs fonts hashtables help.stylesheet help.tips
4 io.styles kernel listener memoize namespaces
5 prettyprint.stylesheet sequences ui.gadgets.panes.private
6 ui.theme ui.tools.listener vocabs.prettyprint words ;
7 IN: ui.theme.switching
8
9 <PRIVATE
10
11 : update-style ( style color elt -- )
12     '[ _ _ rot ?set-at ] change-global ;
13
14 : update-stylesheet ( -- )
15     ! fonts
16     text-color default-font-foreground-color set-global
17     content-background default-font-background-color set-global
18
19     ! ui.gadgets.panes
20     \ specified-font reset-memoized
21
22     ! help.stylesheet
23     default-style text-color foreground update-style
24     link-style link-color foreground update-style
25     title-style title-color foreground update-style
26     title-style help-header-background page-color update-style
27     help-path-style help-path-border-color table-border update-style
28     heading-style heading-color foreground update-style
29     snippet-style snippet-color foreground update-style
30     code-style code-background-color page-color update-style
31     output-style output-color foreground update-style
32     url-style link-color foreground update-style
33     warning-style warning-background-color page-color update-style
34     warning-style warning-border-color border-color update-style
35     deprecated-style deprecated-background-color page-color update-style
36     deprecated-style deprecated-border-color border-color update-style
37     table-style table-border-color table-border update-style
38
39     ! help.tips
40     tip-of-the-day-style tip-background-color page-color update-style
41
42     ! ui.tools.listener
43     listener-input-style text-color foreground update-style
44     listener-word-style text-color foreground update-style
45
46     ! prettyprint.stylesheet
47     { POSTPONE: USING: POSTPONE: USE: POSTPONE: IN: }
48     [ "word-style" word-prop [ dim-color foreground  ] dip set-at ] each
49     base-word-style text-color foreground update-style
50     highlighted-word-style highlighted-word-color foreground update-style
51     base-string-style string-color foreground update-style
52     base-vocab-style dim-color foreground update-style
53     base-effect-style stack-effect-color foreground update-style
54
55     ! listener
56     prompt-style prompt-background-color background update-style
57     prompt-style text-color foreground update-style
58
59     ! vocabs.prettyprint
60     manifest-style vocab-background-color page-color update-style
61     manifest-style vocab-border-color border-color update-style ;
62
63 PRIVATE>
64
65 : switch-theme ( theme -- )
66     theme set-global update-stylesheet ;
67
68 : light-mode ( -- ) light-theme switch-theme ;
69
70 : dark-mode ( -- ) dark-theme switch-theme ;