Skip to content

Instantly share code, notes, and snippets.

@alienlebarge
Last active December 10, 2015 09:18
Show Gist options
  • Save alienlebarge/4413010 to your computer and use it in GitHub Desktop.
Save alienlebarge/4413010 to your computer and use it in GitHub Desktop.
HelveticALB a TaskPaper theme inspired by HelveticaLove

HelveticALB

This Taskpaper theme is inspired by HelveticaLove. Some change have been done to fit my use.

Install

  • Quit Taskpaper
  • Open ~/Library/Application Support/TaskPaper/Themes in Finder
  • Copy the HelviticALB.taskpapertheme into the folder you just opened
  • Start Taskpaper, go to Preferences..., look for "Theme Options" and select "HelveticALB"
<theme>
<!-- Window Style -->
<color id="foreground" red="0.84" green="0.84" blue="0.84" alpha="1.0" />
<color id="background" red="0.28" green="0.28" blue="0.28" alpha="1.0" />
<window foregroundColorID="foreground" backgroundColorID="background" shouldUseHUDScrollers="no" />
<!-- Text View Style -->
<color id="tag" red="0.56" green="0.56" blue="0.56" alpha="1.0" />
<color id="handle" extendsColorID="foreground" />
<color id="insertionPoint" extendsColorID="foreground" />
<color id="selection" red="0.30" green="0.36" blue="0.51" 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"
textLeftEdgeAlignmentStyle="TPEntryPlainTextAlignmentStyle"
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" size="12" />
<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" />
<entryRule matchesQuery="type = &quot;project&quot;" lineCharacterStyleID="project" paragraphStyleID="base" />
<!-- Note style. This section defines the styles that are applied to note lines. -->
<color id="note" red="0.5" green="0.5" blue="0.5" alpha="1.0" />
<font id="note" name="Helvetica Neue Light" fontTraitMask="NSItalicFontMask" size="12" />
<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="groupHeader" extendsColorID="foreground" />
<font id="groupHeader" name="Helvetica Neue UltraLight" size="24" />
<characterStyle id="groupHeader" fontID="groupHeader" foregroundColorID="groupHeader" />
<paragraphStyle id="groupHeader" extendsParagraphStyleID="base" paragraphSpacingBefore="10" paragraphSpacing="10" />
<entryRule matchesQuery="isgroupheader" paragraphStyleID="groupHeader" lineCharacterStyleID="groupHeader" />
<!-- @done style. This section defines the styles that are applied to lines tagged with @done. -->
<characterStyle id="done" strikethroughStyle="NSUnderlineStyleSingle" />
<entryRule matchesQuery="@done" contentCharacterStyleID="done" />
<!-- @start style. This section defines the styles that are applied to lines tagged with @start. -->
<color id="start" red="0.5" green="0.5" blue="0.5" alpha="1.0" />
<characterStyle id="start" foregroundColorID="start" />
<entryRule matchesQuery="@start" contentCharacterStyleID="start" />
<!-- @business style. This section defines the styles that are applied to lines tagged with @business. -->
<color id="business" red="0.51" green="0.72" blue="0.25" alpha="1.0" />
<characterStyle id="business" foregroundColorID="business" />
<entryRule matchesQuery="@business" contentCharacterStyleID="business" />
<entryRule matchesQuery="@wrep" contentCharacterStyleID="business" />
<entryRule matchesQuery="@work" contentCharacterStyleID="business" />
<!-- @personal style. This section defines the styles that are applied to lines tagged with @personal. -->
<color id="personal" red="0.25" green="0.51" blue="0.72" alpha="1.0" />
<characterStyle id="personal" foregroundColorID="personal" />
<entryRule matchesQuery="@personal" contentCharacterStyleID="personal" />
<entryRule matchesQuery="@private" contentCharacterStyleID="personal" />
<entryRule matchesQuery="@prive" contentCharacterStyleID="personal" />
<!-- @upcomming style. This section defines the styles that are applied to lines tagged with @upcoming. -->
<color id="upcoming" red="0.9" green="0.4" blue="0.0" alpha="1.0" />
<characterStyle id="upcoming" foregroundColorID="upcoming" />
<entryRule matchesQuery="@upcoming" contentCharacterStyleID="upcoming" />
<!-- @prio style. This section defines the styles that are applied to lines tagged with @prio. -->
<color id="prio" red="0.82" green="0" blue="0.25" alpha="1.0" />
<characterStyle id="prio" foregroundColorID="prio" />
<entryRule matchesQuery="@prio" contentCharacterStyleID="prio" />
<entryRule matchesQuery="@priority" contentCharacterStyleID="prio" />
<entryRule matchesQuery="@important" contentCharacterStyleID="prio" />
<entryRule matchesQuery="@today" contentCharacterStyleID="prio" />
<entryRule matchesQuery="@overdue" contentCharacterStyleID="prio" />
</theme>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment