Last active
August 29, 2015 14:06
-
-
Save cboone/7ab3bfae2a2d5e455c74 to your computer and use it in GitHub Desktop.
TaskPaper theme: Gill Sans simple – dark on light
This file contains 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> | |
<!-- Colors --> | |
<color id="white" red="1" green="1" blue="1" alpha="1" /> | |
<color id="paleWhite" red="0.95" green="0.95" blue="0.95" alpha="1" /> | |
<color id="black" red="0" green="0" blue="0" alpha="1" /> | |
<color id="darkGray" red="0.4" green="0.4" blue="0.4" alpha="1" /> | |
<color id="lightGray" red="0.7" green="0.7" blue="0.7" alpha="1" /> | |
<color id="mediumGray" red="0.6" green="0.6" blue="0.6" alpha="1" /> | |
<color id="red" red="0.6" green="0.1" blue="0.1" alpha="1" /> | |
<color id="transparent" red="1" green="1" blue="1" alpha="0" /> | |
<color id="defaultBackground" extendsColorID="paleWhite" /> | |
<color id="defaultForeground" extendsColorID="black" /> | |
<!-- Fonts --> | |
<font id="default" name="Gill Sans" size="14" /> | |
<!-- Character styles --> | |
<characterStyle id="default" fontID="default" foregroundColorID="defaultForeground" /> | |
<!-- Paragraph styles --> | |
<paragraphStyle id="default" paragraphSpacingBefore="0" paragraphSpacing="0" lineSpacing="2" lineHeightMultiple="1" alignment="NSLeftTextAlignment" /> | |
<!-- Window --> | |
<window foregroundColorID="defaultForeground" backgroundColorID="defaultBackground" shouldUseHUDScrollers="yes" /> | |
<!-- Text --> | |
<textView | |
shouldAntialiasText="yes" | |
shouldShowNoteHandles="yes" | |
shouldShowProjectHandles="no" | |
defaultCharacterStyleID="default" | |
textLeftEdgeAlignmentStyle="TPEntryPlainTextAlignmentStyle" | |
handleColorID="mediumGray" | |
tagColorID="mediumGray" | |
/> | |
<!-- Notes --> | |
<entryRule matchesQuery="type = note" lineCharacterStyleID="default" paragraphStyleID="default" /> | |
<!-- Tasks --> | |
<entryRule matchesQuery="type = task" lineCharacterStyleID="default" paragraphStyleID="default" /> | |
<!-- Projects --> | |
<font id="project" name="Gill Sans" size="16" /> | |
<characterStyle id="project" fontID="project" foregroundColorID="defaultForeground" /> | |
<characterStyle id="transparentProject" fontID="project" foregroundColorID="transparent" /> | |
<paragraphStyle id="project" paragraphSpacing="0" paragraphSpacingBefore="2" lineSpacing="4" /> | |
<entryRule | |
matchesQuery="type = "project"" | |
contentCharacterStyleID="project" | |
lineCharacterStyleID="transparentProject" | |
paragraphStyleID="project" | |
/> | |
<!-- Top level projects --> | |
<font id="topLevelProject" name="Gill Sans" size="18" /> | |
<characterStyle id="topLevelProject" fontID="topLevelProject" foregroundColorID="defaultForeground" /> | |
<characterStyle id="transparentTopLevelProject" fontID="topLevelProject" foregroundColorID="transparent" /> | |
<paragraphStyle id="topLevelProject" paragraphSpacing="0" paragraphSpacingBefore="6" lineSpacing="4" /> | |
<entryRule | |
matchesQuery="type = "project" and level = 0" | |
paragraphStyleID="topLevelProject" | |
lineCharacterStyleID="transparentTopLevelProject" | |
contentCharacterStyleID="topLevelProject" | |
/> | |
<!-- @waiting --> | |
<characterStyle id="waiting" foregroundColorID="darkGray" /> | |
<entryRule matchesQuery="@waiting" lineCharacterStyleID="waiting" /> | |
<!-- @due --> | |
<font id="due" name="Gill Sans Italic" size="14" /> | |
<characterStyle id="due" fontID="due" /> | |
<entryRule matchesQuery="type = task and @due" lineCharacterStyleID="due" /> | |
<!-- @today --> | |
<characterStyle id="today" foregroundColorID="red" /> | |
<entryRule matchesQuery="@today" lineCharacterStyleID="today" /> | |
<!-- @done --> | |
<characterStyle id="done" strikethroughStyle="NSUnderlineStyleSingle" foregroundColorID="lightGray" /> | |
<entryRule matchesQuery="@done" contentCharacterStyleID="done" /> | |
</theme> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment