Skip to content

Instantly share code, notes, and snippets.

@andrewlkho
Last active December 28, 2015 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewlkho/7442103 to your computer and use it in GitHub Desktop.
Save andrewlkho/7442103 to your computer and use it in GitHub Desktop.
Some files associated with my TaskPaper setup
<theme>
<!-- Define solarized colours -->
<color id="base03" red="0.000" green="0.169" blue="0.212" alpha="1.0" />
<color id="base02" red="0.027" green="0.212" blue="0.259" alpha="1.0" />
<color id="base01" red="0.345" green="0.431" blue="0.459" alpha="1.0" />
<color id="base00" red="0.396" green="0.482" blue="0.514" alpha="1.0" />
<color id="base0" red="0.514" green="0.580" blue="0.588" alpha="1.0" />
<color id="base1" red="0.576" green="0.631" blue="0.631" alpha="1.0" />
<color id="base2" red="0.933" green="0.910" blue="0.835" alpha="1.0" />
<color id="base3" red="0.992" green="0.965" blue="0.890" alpha="1.0" />
<color id="yellow" red="0.710" green="0.537" blue="0.000" alpha="1.0" />
<color id="orange" red="0.796" green="0.294" blue="0.086" alpha="1.0" />
<color id="red" red="0.863" green="0.196" blue="0.184" alpha="1.0" />
<color id="magenta" red="0.827" green="0.212" blue="0.510" alpha="1.0" />
<color id="violet" red="0.423" green="0.443" blue="0.769" alpha="1.0" />
<color id="blue" red="0.149" green="0.545" blue="0.824" alpha="1.0" />
<color id="cyan" red="0.165" green="0.631" blue="0.596" alpha="1.0" />
<color id="green" red="0.522" green="0.600" blue="0.000" alpha="1.0" />
<!-- Define fonts -->
<font id="base" name="Helvetica Neue Light" size="14" />
<font id="monospace" name="Menlo" size="10" />
<!-- Define default styles -->
<characterStyle id="default" fontID="base" foregroundColorID="base00" backgroundColorID="base3" />
<paragraphStyle id="default" paragraphSpacingBefore="0" paragraphSpacing="0" lineSpacing="0" lineHeightMultiple="0.0" alignment="NSLeftTextAlignment" />
<!-- Window style -->
<window foregroundColorID="base00" backgroundColorID="base3" shouldUseHUDScrollers="no" />
<!-- Text view style -->
<textView
shouldAntialiasText="yes"
shouldShowNoteHandles="no"
shouldShowProjectHandles="no"
defaultCharacterStyleID="base"
insertionPointColorID="base0"
selectionColorID="base2"
tagColorID="base00"
/>
<!-- Task style -->
<characterStyle id="task" fontID="base" foregroundColorID="base00" />
<entryRule matchesQuery="type = task" lineCharacterStyleID="task" paragraphStyleID="default" />
<!-- Project style -->
<characterStyle id="project" fontID="base" foregroundColorID="base01" />
<paragraphStyle id="project" extendsParagraphStyleID="default" paragraphSpacingBefore="15" paragraphSpacing="5" />
<entryRule matchesQuery="type = &quot;project&quot;" lineCharacterStyleID="project" paragraphStyleID="project" />
<!-- Note style -->
<characterStyle id="note" fontID="monospace" foregroundColorID="base1" />
<entryRule matchesQuery="type = note" lineCharacterStyleID="note" paragraphStyleID="default" />
<!-- GroupHeader style (top level projects) -->
<characterStyle id="groupHeader" fontID="base" foregroundColorID="base01" />
<paragraphStyle id="groupHeader" extendsParagraphStyleID="default" paragraphSpacingBefore="20" paragraphSpacing="5" />
<entryRule matchesQuery="type = &quot;project&quot; and level = 0" lineCharacterStyleID="groupHeader" paragraphStyleID="groupHeader" />
<!-- @done style -->
<characterStyle id="done" fontID="base" foregroundColorID="base2" tagColorID="base2" />
<entryRule matchesQuery="@done" lineCharacterStyleID="done" />
</theme>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment