Skip to content

Instantly share code, notes, and snippets.

@bighairydave
Last active August 29, 2015 14:13
Show Gist options
  • Save bighairydave/ca4686a5f495a76682b0 to your computer and use it in GitHub Desktop.
Save bighairydave/ca4686a5f495a76682b0 to your computer and use it in GitHub Desktop.
Modified Taskpaper theme partially inspired by tundramonkey / HelvetiCan.taskpapertheme
<theme>
<!-- Window Style -->
<color id="foreground" red="0" green="0" blue="0" alpha="1.0" />
<color id="background" red="1.0" green="1.0" blue="1.0" alpha="1.0" />
<window foregroundColorID="foreground" backgroundColorID="background" shouldUseHUDScrollers="no" />
<!-- Text View Style -->
<color id="tag" red="0.5" green="0" blue="0.5" alpha="1.0" />
<color id="handle" extendsColorID="foreground" />
<color id="insertionPoint" extendsColorID="foreground" />
<color id="selection" red="0.7" green="0.835" blue="1" 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" red="0" green="0.256" blue="0.5" alpha="1.0" />
<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 = &quot;project&quot;" lineCharacterStyleID="project" paragraphStyleID="project" />
<!-- Note style. This section defines the styles that are applied to note lines. -->
<color id="note" red="0.45" green="0.45" blue="0.45" 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" />
<font id="groupHeader" extendsFontID="base" fontTraitMask="NSBoldFontMask" size="16" />
<characterStyle id="groupHeader" fontID="groupHeader" foregroundColorID="groupHeader" />
<paragraphStyle id="groupHeader" extendsParagraphStyleID="base" paragraphSpacingBefore="10" paragraphSpacing="10" />
<entryRule matchesQuery="type = &quot;project&quot; and level = 0" paragraphStyleID="groupHeader" lineCharacterStyleID="groupHeader" />
<!-- @done style. This section defines the styles that are applied to lines tagged with @done. -->
<color id="done" red="0.25" green="0.25" blue="0.25" alpha="1.0" />
<characterStyle id="done" strikethroughStyle="NSUnderlineStyleSingle" />
<entryRule matchesQuery="@done" contentCharacterStyleID="done" />
<!-- @today style -->
<color id="today" red="1.0" green="0.5" blue="0.25" alpha="1.0" />
<characterStyle id="today" fontID="bolder" foregroundColorID="today" />
<entryRule matchesQuery="@today" contentCharacterStyleID="today" />
<!-- @wip style -->
<color id="wip" red="0.2" green="0.5" blue="0.1" alpha="1.0" />
<characterStyle id="wip" foregroundColorID="wip" />
<entryRule matchesQuery="@wip" contentCharacterStyleID="wip" />
<!-- @asap style -->
<color id="asap" red="1.0" green="0.5" blue="0.1" alpha="1.0" />
<characterStyle id="asap" foregroundColorID="asap" />
<entryRule matchesQuery="@asap" contentCharacterStyleID="asap" />
<!-- @slipped style -->
<color id="slipped" red="0.67" green="0.137" blue="0.136" alpha="1.0" />
<characterStyle id="slipped" fontID="bolder" foregroundColorID="slipped" />
<entryRule matchesQuery="@slipped" contentCharacterStyleID="slipped" />
<!-- @reco style -->
<color id="reco" red="0" green="0.5" blue="0.75" alpha="1.0" />
<characterStyle id="reco" fontID="bolder" foregroundColorID="reco" />
<entryRule matchesQuery="@reco" contentCharacterStyleID="reco" />
</theme>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment