-
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
(defun my-solarized-theme () | ||
"My solarized child theme." | ||
(custom-theme-set-faces | ||
theme-name | ||
`(default ((,class (:foreground ,red :background ,base03)))) | ||
)) | ||
|
||
(provide 'my-solarized) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(require 'solarized) | ||
(require 'my-solarized) | ||
|
||
;; This files needs to be places iside the custom-theme-load-path list | ||
|
||
(deftheme my-solarized-dark "The light variant of the Solarized colour theme") | ||
(create-solarized-theme 'dark 'my-solarized-dark 'my-solarized) | ||
|
||
(provide-theme 'my-solarized-dark) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
(require 'solarized) | ||
(require 'my-solarized) | ||
|
||
;; This files needs to be places iside the custom-theme-load-path list | ||
|
||
(deftheme my-solarized-light "The light variant of the Solarized colour theme") | ||
(create-solarized-theme 'light 'my-solarized-light 'my-solarized-theme) | ||
|
||
(provide-theme 'my-solarized-light) |