Last active
April 19, 2016 15:12
-
-
Save waltonjones/f7c41b4bed3e9868fe0f to your computer and use it in GitHub Desktop.
Solarized Light: A Taskpaper 3 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
// See http://guide.taskpaper.com/creating_themes.html to get started. | |
// Solarized Light Theme by Walton Jones | |
// From Solarized (http://ethanschoonover.com/solarized) | |
// Variables | |
@user-font-size: 20; | |
@text-color: rgb(83, 104, 112); | |
@background-color: rgb(252, 244, 220); | |
@tint-color: rgb(71, 91, 98); | |
@selection-color: rgb(234, 227, 203); | |
@invisibles-color: @selection-color; | |
@line-height-multiple: 1.3; | |
// Basics | |
item[data-type="note"] { | |
> run[content] { | |
font-family: "Source Sans Pro Light"; | |
font-style: italic; | |
font-size: @user-font-size*0.9; | |
color: rgb(129, 144, 144); | |
} | |
> run[link] { | |
color: rgb(33, 118, 199); | |
font-style: normal; | |
} | |
} | |
run[link] { | |
color: rgb(33, 118, 199); | |
text-decoration: underline; | |
} | |
run[link^="button"] { | |
color: @text-color; | |
text-expansion: 1; | |
text-decoration: none; | |
} | |
run[link^="filter"] { | |
color: @text-color; | |
text-decoration: none; | |
} | |
item[data-type="project"] { | |
font-weight: bold; | |
font-size: @user-font-size*1.1; | |
color: rgb(37, 146, 134); | |
} | |
// Tags | |
run[tag] { | |
font-style: normal; | |
font-weight: normal; | |
color: mix(@text-color, @background-color, 50%); | |
} | |
item[data-today], run[tag=data-today] { | |
color: rgb(209, 28, 36); | |
} | |
item[data-next], run[tag=data-next] { | |
color: rgb(165, 119, 6); | |
} | |
item[data-waiting], run[tag=data-waiting] { | |
color: rgb(89, 90, 183); | |
} | |
item[data-hold], run[tag=data-hold] { | |
color: rgb(89, 90, 183); | |
} | |
item[data-done], run[tag=data-done] { | |
color: rgba(10, 41, 51, 0.5); | |
> run[display] { | |
text-strikethrough: NSUnderlineStyleSingle; | |
text-strikethrough-color: rgba(10, 41, 51, 0.5); | |
} | |
} | |
sidebar { | |
search-item-prefix: "🔍 "; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment