branch: elpa/apropospriate-theme
commit 045313bd38d5d6eb9a6aa7a214238ac3a023419f
Author: justin talbott <[email protected]>
Commit: justin talbott <[email protected]>
update README, pass checkdoc & increase fill-column
---
README.md | 16 +++++++++-------
apropospriate-theme.el | 9 ++++++---
2 files changed, 15 insertions(+), 10 deletions(-)
diff --git a/README.md b/README.md
index 538ea0e..99fec0a 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,23 @@
## Apropospriate Theme ##
-A colorful, relatively low contrast light & dark theme set for Emacs. It
strives to be pleasant, clean, and consistent, with special focus for the
current buffer.
+A colorful, low-contrast, light & dark theme set for Emacs. It strives to be
pleasant, clean, and consistent, with special focus for the current buffer.
This theme started as a Frakenstein mash-up of `base16-eighties-theme` and
`solarized-light` themes which I customized heavily, then completely swapped
out the color palette based on Google's [Material color
suggestions](http://www.google.com/design/spec/style/color.html#color-color-palette).
### Screenshots ###
-
-
+
+
### Install & Usage ###
-You can always download and add it to your load path manually, but the easiest
way to install is through [MELPA](http://melpa.org) via `package.el`:
+Download `apropospriate-theme.el` somewhere and add its directory to
`custom-theme-load-path`.
-```
-M-x package-install apropospriate-theme
-```
+<!-- You can always download and add it to your load path manually, but the
easiest way to install is through [MELPA](http://melpa.org) via `package.el`:
-->
+
+<!-- ``` -->
+<!-- M-x package-install apropospriate-theme -->
+<!-- ``` -->
Once installed, load with `M-x load-theme` or put this in your config:
diff --git a/apropospriate-theme.el b/apropospriate-theme.el
index 5c9e34d..5105679 100644
--- a/apropospriate-theme.el
+++ b/apropospriate-theme.el
@@ -40,6 +40,7 @@
(const :tag "Light" light)))
(defun apropospriate-light? ()
+ "Check if the current theme variant is `light'."
(eq apropospriate-theme-variant 'light))
(let* ((class '((class color) (min-colors 89)))
@@ -178,11 +179,13 @@
(guide-key/key-face :foreground ,pink)
(guide-key/prefix-command-face :foreground ,cyan)
- (tabbar-default :inherit default :box (:line-width 4 :color
,base00 :style nil) :foreground ,base02 :background "black")
+ (tabbar-default :inherit default :foreground ,base02 :background
"black"
+ :box (:line-width 4 :color ,base00 :style nil))
(tabbar-button :height 0.8 :box (:line-width 4 :color ,base00-2
:style nil))
(tabbar-unselected :inherit tabbar-button :background ,base00-2)
(tabbar-modified :inherit tabbar-unselected)
- (tabbar-selected :inherit tabbar-button :box (:line-width 4 :color
,base00 :style nil))
+ (tabbar-selected :inherit tabbar-button
+ :box (:line-width 4 :color ,base00 :style nil))
(tabbar-separator :inherit tabbar-selected)
(company-tooltip :background ,base00-1 :foreground ,base02)
@@ -516,6 +519,6 @@
;; Local Variables:
;; no-byte-compile: t
;; eval: (when (require 'rainbow-mode nil t) (rainbow-mode 1))
-;; fill-column: 95
+;; fill-column: 105
;; End:
;;; apropospriate-theme.el ends here