-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename theme from "Beach Bar" to "Beach"
- Loading branch information
1 parent
b97d817
commit fdeabc6
Showing
3 changed files
with
11 additions
and
11 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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
;;; beach-bar-theme.el --- A light, sunny and calm Emacs theme -*- lexical-binding: t; -*- | ||
;; Copyright (C) 2021–2022 Dan Dee | ||
;; Copyright (C) 2021–2024 Dan Dee | ||
;; Author: Dan Dee <[email protected]> | ||
;; URL: https://github.com/monkeyjunglejuice/beach-bar-theme-emacs | ||
;; Version: 1.0.0 | ||
;; URL: https://github.com/monkeyjunglejuice/beach-theme-emacs | ||
;; Version: 1.0 | ||
;; Package-Requires: ((emacs "26.1")) | ||
;; Keywords: faces, theme | ||
;; SPDX-License-Identifier: MIT | ||
;; This file is not part of GNU Emacs. | ||
|
||
;;; Commentary: | ||
;; Gulp down your happy shake, listen to the trippy tunes and slowly do | ||
;; "M-x load-theme" ... you deserve it. »Beach Bar« is a sunny theme inspired | ||
;; by monochromatic themes. It appears calm, wears colors sparingly, | ||
;; and only where really neccessary. | ||
;; "M-x load-theme" ... you deserve it. »Beach« is a sunny theme inspired | ||
;; by monochromatic themes and e-ink displays. It appears calm, wears colors | ||
;; sparingly, and only where really neccessary. | ||
|
||
;; My other themes: | ||
;; - "The Matrix" https://github.com/monkeyjunglejuice/matrix-emacs-theme | ||
|
||
;;; Code: | ||
|
||
(deftheme beach-bar "A light, sunny and calm Emacs theme.") | ||
(deftheme beach "A light, sunny and calm Emacs theme.") | ||
|
||
;; Colors | ||
(let* ((color-bg "#fff8dc") | ||
|
@@ -49,7 +49,7 @@ | |
(color-shade-9 "#000000")) | ||
|
||
(custom-theme-set-faces | ||
'beach-bar | ||
'beach | ||
`(default ((t (:background ,color-bg :foreground ,color-fg)))) | ||
`(cursor ((t (:background ,color-fg-alt)))) | ||
`(region ((t (:foreground ,color-dark :background ,color-light)))) | ||
|
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
(beach-theme | ||
:fetcher github | ||
:repo "monkeyjunglejuice/beach-emacs-theme") |