Created
February 25, 2012 20:19
-
-
Save goblindegook/1910408 to your computer and use it in GitHub Desktop.
HelvetiPaperG TaskPaper Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<theme> | |
<!-- color --> | |
<color id="foreground" red="1.0" green=".2" blue=".2" alpha="1.0" /> | |
<color id="background" red="1" green="1" blue="1" alpha="1.0" /> | |
<color id="done" red=".8" green=".8" blue=".8" alpha="1.0" /> | |
<color id="groupHeader" extendsColorID="foreground" /> | |
<color id="handle" extendsColorID="foreground" /> | |
<color id="insertionPoint" red=".4" green=".4" blue=".4" alpha="1.0" /> | |
<color id="note" red=".5" green=".5" blue=".5" alpha="1.0" /> | |
<color id="project" extendsColorID="foreground" /> | |
<color id="selection" red=".8" green=".8" blue=".8" alpha="1.0" /> | |
<color id="tag" red="1.0" green=".5" blue=".5" alpha="1.0" /> | |
<color id="task" red=".25" green=".25" blue=".25" alpha="1.0" /> | |
<color id="urgent" red="0" green="0" blue="0" alpha="1.0" /> | |
<!-- font --> | |
<font id="base" name="Helvetica Neue" size="0" /> | |
<font id="groupHeader" name="Helvetica Neue UltraLight" size="22" /> | |
<font id="note" extendsFontID="base" /> | |
<font id="project" name="Helvetica Neue UltraLight" size="20" /> | |
<font id="task" extendsFontID="base" /> | |
<font id="urgent" name="Helvetica Neue Bold" size="0" /> | |
<!-- characterStyle --> | |
<characterStyle id="base" fontID="base" foregroundColorID="foreground" /> | |
<characterStyle id="task" fontID="task" foregroundColorID="task" /> | |
<characterStyle id="project" fontID="project" foregroundColorID="project" /> | |
<characterStyle id="note" fontID="note" foregroundColorID="note" /> | |
<characterStyle id="groupHeader" fontID="groupHeader" foregroundColorID="groupHeader" /> | |
<characterStyle id="done" foregroundColorID="done" strikethroughStyle="NSUnderlineStyleSingle" /> | |
<characterStyle id="urgent" fontID="urgent" foregroundColorID="urgent" /> | |
<!-- paragraphStyle --> | |
<paragraphStyle id="base" paragraphSpacingBefore="0" paragraphSpacing="4" lineSpacing="0" lineHeightMultiple="1.0" alignment="NSLeftTextAlignment" /> | |
<paragraphStyle id="project" extendsParagraphStyleID="base" paragraphSpacingBefore="0" paragraphSpacing="4" /> | |
<paragraphStyle id="groupHeader" extendsParagraphStyleID="base" paragraphSpacingBefore="19" paragraphSpacing="7" /> | |
<!-- Window Style --> | |
<window foregroundColorID="foreground" backgroundColorID="background" shouldUseHUDScrollers="no" /> | |
<!-- Text View Style --> | |
<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. --> | |
<entryRule matchesQuery="type = task" lineCharacterStyleID="task" paragraphStyleID="base" /> | |
<!-- Project style. This section defines the styles that are applied to project lines. --> | |
<entryRule matchesQuery="type = "project"" lineCharacterStyleID="project" paragraphStyleID="project" /> | |
<!-- Note style. This section defines the styles that are applied to note lines. --> | |
<entryRule matchesQuery="type = note" lineCharacterStyleID="note" paragraphStyleID="base" /> | |
<!-- GroupHeader style. This section defines the styles that are applied to groupHeader lines. (top level projects) --> | |
<entryRule matchesQuery="isgroupheader" paragraphStyleID="groupHeader" lineCharacterStyleID="groupHeader" /> | |
<!-- @done style. This section defines the styles that are applied to lines tagged with @done. --> | |
<entryRule matchesQuery="@done" contentCharacterStyleID="done" tagColorID="done" /> | |
<!-- @version style. This section defines the styles that are applied to lines tagged with @version. --> | |
<entryRule matchesQuery="@version" contentCharacterStyleID="version" /> | |
<!-- @priority style. This section defines the styles that are applied to lines tagged with @priority. --> | |
<entryRule matchesQuery="@today" contentCharacterStyleID="urgent" /> | |
<entryRule matchesQuery="@priority" contentCharacterStyleID="urgent" /> | |
<entryRule matchesQuery="@prio" contentCharacterStyleID="urgent" /> | |
</theme> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment