-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.apln
26 lines (26 loc) · 920 Bytes
/
config.apln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
:Namespace config
:Section window ⍝ setting for output pane
caption←'Output' ⍝ title bar text
coord←'Prop' ⍝ co-ordinate system
posn←0 17 ⍝ initial position
size←107 103 ⍝ initial size
:EndSection
:Namespace data ⍝ appearance and behaviour
single←0 ⍝ clear log for every new output
theme←'dark' ⍝ visual theme
:Namespace dark
background←'#222'
output←'#fff'
error←'#f70'
meta←'#77f'
borders←'#555' '#444' '#333' ⍝ hover normal meta
:EndNamespace
:Namespace light
background←'#fff'
output←'#000'
error←'#730'
meta←'#337'
borders←'#999' '#bbb' '#ddd' ⍝ hover normal meta
:EndNamespace
:EndNamespace
:EndNamespace