Move some stuff

This commit is contained in:
Maciej 2026-05-25 09:09:03 +03:00
parent 253d185ca3
commit bcaa83cfd5
Signed by: maciej
GPG key ID: 28243AF437E32F99
57 changed files with 55 additions and 12 deletions

View file

@ -1,42 +0,0 @@
;;; icejam-base16-harmonic-light-modified.el --- summary
;;; Commentary:
;; Author: Maciej Szlosarczyk
;; Maintainer: Maciej Szlosarczyk
;; Version: 0.1-snapshot
;;; Code:
(declare-function base16-theme-define (theme-name colors))
(defvar icejam-base16-harmonic-light-colors
'(:base00 "#f7f9fb"
:base01 "#e5ebf1"
:base02 "#cbd6e2"
:base03 "#92a9c0"
:base04 "#627e99"
:base05 "#405c79"
:base06 "#223b54"
:base07 "#0b1c2c"
:base08 "#bf8b56"
:base09 "#bfbf56"
:base0A "#8bbf56"
:base0B "#56bf8b"
:base0C "#568bbf"
:base0D "#8b56bf"
:base0E "#bf568b"
:base0F "#bf5656")
"All colors for Base16 Harmonic Light Modified are defined here.")
;; Define the theme
(deftheme icejam-base16-harmonic-light)
;; Add all the faces to the theme
(with-eval-after-load 'base16-theme
(base16-theme-define
'icejam-base16-harmonic-light icejam-base16-harmonic-light-colors))
;; Mark the theme as provided
(provide-theme 'icejam-base16-harmonic-light)
(provide 'icejam-base16-harmonic-light)
;;; icejam-base16-harmonic-light.el ends here