Ported from the original, by Ahmad Awais.
In the screenshot: MonoLisa, default mode-line, state-flow.
Obtain the theme from MELPA. Then use the
customize interface (M-x customize-themes
RET) or add the
following to your init file:
;; near the top of the file
(package-init)
(load-theme 'shades-of-purple t)
Obtain the theme from MELPA, or configure
use-package
to always download missing packages:
(setq use-package-always-ensure t)
Then add the following to your init file:
(use-package shades-of-purple-theme
:config (load-theme 'shades-of-purple t))
Copyright (C) 2021 by Arturo Vergara
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.