-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeyard Divided.taskpapertheme
More file actions
93 lines (83 loc) · 4.73 KB
/
codeyard Divided.taskpapertheme
File metadata and controls
93 lines (83 loc) · 4.73 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<theme>
<!-- Window Style -->
<color id="foreground" red="0.65" green="0.66" blue="0.65" alpha="1.0" />
<color id="background" red="0.11" green="0.12" blue="0.13" alpha="1.0" />
<window foregroundColorID="foreground" backgroundColorID="background" shouldUseHUDScrollers="no" />
<!-- Text View Style -->
<color id="tag" red="0.28" green="0.30" blue="0.32" alpha="1.0" />
<color id="handle" red="0.28" green="0.30" blue="0.32" alpha="1.0" />
<color id="insertionPoint" extendsColorID="foreground" />
<color id="selection" red="0.18" green="0.18" blue="0.18" alpha="1.0" />
<font id="base" name="Helvetica" size="0" />
<characterStyle id="base" fontID="base" foregroundColorID="foreground" />
<paragraphStyle id="base" paragraphSpacingBefore="0" paragraphSpacing="0" lineSpacing="0" lineHeightMultiple="0.0" alignment="NSLeftTextAlignment" />
<textView
shouldAntialiasText="yes"
shouldShowNoteHandles="no"
shouldShowProjectHandles="yes"
defaultCharacterStyleID="base"
insertionPointColorID="insertionPoint"
selectionColorID="selection"
handleColorID="handle"
tagColorID="tag"
/>
<!-- Task style. This section defines the styles that are applied to task lines. -->
<color id="task" extendsColorID="foreground" />
<font id="task" extendsFontID="base" />
<characterStyle id="task" fontID="task" foregroundColorID="task" />
<entryRule matchesQuery="type = task" lineCharacterStyleID="task" paragraphStyleID="base" />
<!-- Project style. This section defines the styles that are applied to project lines. -->
<color id="project" extendsColorID="foreground" />
<font id="project" extendsFontID="base" fontTraitMask="NSBoldFontMask" />
<characterStyle id="project" fontID="project" foregroundColorID="project" />
<paragraphStyle id="project" extendsParagraphStyleID="base" paragraphSpacingBefore="5" paragraphSpacing="5" />
<entryRule matchesQuery="type = "project"" lineCharacterStyleID="project" paragraphStyleID="project" />
<!-- Note style. This section defines the styles that are applied to note lines. -->
<color id="note" red="0.28" green="0.30" blue="0.32" alpha="1.0" />
<font id="note" extendsFontID="base" />
<characterStyle id="note" fontID="note" foregroundColorID="note" />
<entryRule matchesQuery="type = note" lineCharacterStyleID="note" paragraphStyleID="base" />
<!-- GroupHeader style. This section defines the styles that are applied to groupHeader lines. (top level projects) -->
<color id="clear" red="1.0" green="1.0" blue="1.0" alpha="0.0" />
<gradient id="groupHeader" startColorID="foreground" endColorID="clear" angle="0" />
<color id="groupHeader" extendsColorID="foreground" />
<font id="groupHeader" extendsFontID="base" fontTraitMask="NSBoldFontMask" size="18" />
<characterStyle id="groupHeader" fontID="groupHeader" foregroundColorID="groupHeader" />
<paragraphStyle id="groupHeader" extendsParagraphStyleID="base" paragraphSpacingBefore="20" paragraphSpacing="10" />
<backgroundStyle
id="groupHeader"
maxWidth="0"
xWeight="0"
maxHeight="1"
yWeight="-0.5"
cornerRadiusX="0"
cornerRadiusY="0"
fillGradientID="groupHeader"
/>
<entryRule
matchesQuery="isgroupheader"
paragraphStyleID="groupHeader"
lineCharacterStyleID="groupHeader"
frontParagraphBackgroundStyleID="groupHeader"
/>
<!-- @done style. This section defines the styles that are applied to lines tagged with @done. -->
<color id="done" red="0.28" green="0.30" blue="0.32" alpha="1.0" />
<characterStyle id="done" foregroundColorID="done" strikethroughStyle="NSUnderlineStyleSingle" />
<entryRule matchesQuery="@done" contentCharacterStyleID="done" />
<!-- @today style. This section defines the styles that are applied to lines tagged with @today. -->
<color id="today" red="0.51" green="0.60" blue="0.09" alpha="1.0" />
<characterStyle id="today" foregroundColorID="today" />
<entryRule matchesQuery="@today" contentCharacterStyleID="today" />
<entryRule matchesQuery="@now" contentCharacterStyleID="today" />
<!-- @prio style. This section defines the styles that are applied to lines tagged with @prio. -->
<color id="prio" red="0.85" green="0.33" blue="0.22" alpha="1.0" />
<characterStyle id="prio" foregroundColorID="prio" />
<entryRule matchesQuery="@prio" contentCharacterStyleID="prio" />
<entryRule matchesQuery="@priority" contentCharacterStyleID="prio" />
<entryRule matchesQuery="@overdue" contentCharacterStyleID="prio" />
<!-- @important style. This section defines the styles that are applied to lines tagged with @important. -->
<color id="important" red="0.34" green="0.53" blue="0.73" alpha="1.0" />
<characterStyle id="important" foregroundColorID="important" />
<entryRule matchesQuery="@important" contentCharacterStyleID="important" />
<entryRule matchesQuery="@pending" contentCharacterStyleID="important" />
</theme>