forgot some rename

This commit is contained in:
Yann Esposito (Yogsototh) 2019-10-18 23:49:40 +02:00
parent 7a086d0c91
commit 955e791142
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
6 changed files with 20 additions and 20 deletions

View file

@ -17,9 +17,9 @@ circumstances**.
This is not meant to be a strict guide but it can probably be follwed in most
situations.
### Upstream Solarized palette usage documentation
### Upstream Solaryzed palette usage documentation
The base Solarized colors have a canonical
The base Solaryzed colors have a canonical
[usage documentation](http://ethanschoonover.com/solaryzed#usage-development)
When referring to colors, the convention is to use the dark theme's

View file

@ -3,23 +3,23 @@
[![MELPA Stable](http://stable.melpa.org/packages/solaryzed-theme-badge.svg)](http://stable.melpa.org/#/solaryzed-theme)
[![Join the chat at https://gitter.im/bbatsov/solaryzed-emacs](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bbatsov/solaryzed-emacs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
# Solarized for Emacs
# Solaryzed for Emacs
Solarized for Emacs is an Emacs port of the [Solarized theme for vim](http://ethanschoonover.com/solaryzed),
Solaryzed for Emacs is an Emacs port of the [Solaryzed theme for vim](http://ethanschoonover.com/solaryzed),
developed by Ethan Schoonover.
You can find several screenshots of Solarized for Emacs [here](https://emacsthemes.com/themes/solaryzed-themes.html).
You can find several screenshots of Solaryzed for Emacs [here](https://emacsthemes.com/themes/solaryzed-themes.html).
Solarized for Emacs is tested only under Emacs 24, but should be
Solaryzed for Emacs is tested only under Emacs 24, but should be
working under Emacs 23 as well. The theme is implemented in terms of
customizations and `deftheme` and does not require the
`color-theme-package`.
## Installation
Solarized for Emacs is available for installation via the
Solaryzed for Emacs is available for installation via the
[MELPA](http://melpa.org) `package.el`
repository. Assuming you've set it up you can install Solarized like this:
repository. Assuming you've set it up you can install Solaryzed like this:
`M-x package-install solaryzed-theme`
@ -81,7 +81,7 @@ elisp code:
```
Note that these need to be set **before** `load-theme` is invoked for Solarized.
Note that these need to be set **before** `load-theme` is invoked for Solaryzed.
### Underline position setting for X

View file

@ -1,4 +1,4 @@
;;; solaryzed-dark-theme.el --- Solarized Dark Theme for Emacs.
;;; solaryzed-dark-theme.el --- Solaryzed Dark Theme for Emacs.
;; Copyright (C) 2011-2019 Bozhidar Batsov
@ -23,7 +23,7 @@
(require 'solaryzed)
(deftheme solaryzed-dark "The dark variant of the Solarized colour theme")
(deftheme solaryzed-dark "The dark variant of the Solaryzed colour theme")
(create-solaryzed-theme 'dark 'solaryzed-dark)

View file

@ -1,4 +1,4 @@
;;; solaryzed-light-theme.el --- Solarized Light Theme for Emacs.
;;; solaryzed-light-theme.el --- Solaryzed Light Theme for Emacs.
;; Copyright (C) 2011-2019 Bozhidar Batsov
@ -23,7 +23,7 @@
(require 'solaryzed)
(deftheme solaryzed-light "The light variant of the Solarized colour theme")
(deftheme solaryzed-light "The light variant of the Solaryzed colour theme")
(create-solaryzed-theme 'light 'solaryzed-light)

View file

@ -1,5 +1,5 @@
(define-package
"solaryzed-theme"
"1.2.2"
"The Solarized color theme, ported to Emacs."
"The Solaryzed color theme, ported to Emacs."
'((emacs "24.1") (cl-lib "0.5") (dash "2.6.0")))

View file

@ -1,4 +1,4 @@
;;; solaryzed.el --- Solarized for Emacs.
;;; solaryzed.el --- Solaryzed for Emacs.
;; Copyright (C) 2011-2019 Bozhidar Batsov
@ -24,7 +24,7 @@
;;; Commentary:
;;
;; A port of Solarized to Emacs.
;; A port of Solaryzed to Emacs.
;;
;;; Installation:
;;
@ -47,7 +47,7 @@
;;; Options
(defgroup solaryzed nil
"Solarized theme options.
"Solaryzed theme options.
The theme has to be reloaded after changing anything in this group."
:group 'faces)
@ -182,7 +182,7 @@ Alpha should be a float between 0 and 1."
;; background light
(s-base3 "#F0F8FF")
;; Solarized accented colors
;; Solaryzed accented colors
(yellow "#A18D62")
(orange "#A76052")
(red "#B35658")
@ -211,7 +211,7 @@ Alpha should be a float between 0 and 1."
(green-d "#4C5D24")
(green-l "#D2DDBA")
;; Solarized palette names, use these instead of -fg -bg...
;; Solaryzed palette names, use these instead of -fg -bg...
(base0 (if (eq variant 'light) s-base00 s-base0))
(base00 (if (eq variant 'light) s-base0 s-base00))
(base1 (if (eq variant 'light) s-base01 s-base1))
@ -1921,7 +1921,7 @@ customize the resulting theme."
;;;;; slime
`(slime-repl-inputed-output-face ((,class (:foreground ,red))))
;;;;; smart-mode-line
;; use (setq sml/theme nil) to enable Solarized for sml
;; use (setq sml/theme nil) to enable Solaryzed for sml
`(sml/filename ((,class (:foreground ,base1 :weight bold))))
`(sml/prefix ((,class (:foreground unspecified))))
`(sml/git ((,class (:foreground unspecified))))