diff options
author | EuAndreh <eu@euandre.org> | 2021-02-08 21:44:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-02-08 21:53:31 -0300 |
commit | dd04e676719e18674fac0005ae77b0ebcf9d94b7 (patch) | |
tree | 81abc07a3c3abde06c0f009265119cf4383e608b /aux/workflow/style.css | |
parent | euandreh.scm: Define packages dynamically (diff) | |
download | package-repository-dd04e676719e18674fac0005ae77b0ebcf9d94b7.tar.gz package-repository-dd04e676719e18674fac0005ae77b0ebcf9d94b7.tar.xz |
Add aux/ default files
Diffstat (limited to '')
-rw-r--r-- | aux/workflow/style.css | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css new file mode 100644 index 0000000..ac0144c --- /dev/null +++ b/aux/workflow/style.css @@ -0,0 +1,38 @@ +<style> + hr { + background-color: #ccc; + } + + span.header-anchor { + opacity: 0.5; + } + + /* + Replicate colors from: + https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866 + */ + + .TODO { + color: brown; + } + + .DOING { + color: yellowgreen; + } + + .WAITING, .MEETING { + color: gray; + } + + .INACTIVE { + color: orange; + } + + .NEXT { + color: red; + } + + .CANCELLED, .DONE { + color: green; + } +</style> |