https://github.com/ianyepan/tron-legacy-emacs-theme
Original retro-futuristic theme inspired by Tron: Legacy
https://github.com/ianyepan/tron-legacy-emacs-theme
emacs theme tron
Last synced: 5 months ago
JSON representation
Original retro-futuristic theme inspired by Tron: Legacy
- Host: GitHub
- URL: https://github.com/ianyepan/tron-legacy-emacs-theme
- Owner: ianyepan
- License: gpl-3.0
- Created: 2018-10-14T20:50:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-08T06:37:35.000Z (9 months ago)
- Last Synced: 2024-08-08T18:45:33.060Z (9 months ago)
- Topics: emacs, theme, tron
- Language: Emacs Lisp
- Homepage:
- Size: 17.8 MB
- Stars: 189
- Watchers: 7
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Tron Legacy Emacs Theme
![]()
Inspired by Base16-Black-Metal, Grayscale and City Lights.
![]()
### Installing the theme:
#### Installation Method 1: MELPA (Recommended)
`tron-legacy-theme` is now on MELPA as a package (as of 1. June. 2020)! An example use-package declaration:
```emacs-lisp
(use-package tron-legacy-theme
:config
(load-theme 'tron-legacy t))
```If you want to invoke some customization options (more info see below), you should set them "before" you load the theme, like so:
```emacs-lisp
(use-package tron-legacy-theme
:config
(setq tron-legacy-theme-vivid-cursor t)
(load-theme 'tron-legacy t))
```#### Installation Method 2: manual install
Download `tron-legacy-theme.el` and put it under `~/.emacs.d/themes/` (or `~/.config/emacs/themes/`), then add these lines to your `init.el`:
```emacs-lisp
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
; or
(add-to-list 'custom-theme-load-path "~/.config/emacs/themes/")(load-theme 'tron-legacy t)
```### Customization options:
1. Setting `tron-legacy-theme-dark-fg-bright-comments` to `t` causes the foreground to be dimmed and comments to be brighter. The default value is `nil`.
```emacs-lisp
(setq tron-legacy-theme-dark-fg-bright-comments t)
```2. Setting `tron-legacy-theme-vivid-cursor` to `t` changes the cursor color to bright golden, making it easier to spot.
```emacs-lisp
(setq tron-legacy-theme-vivid-cursor t)
```3. Setting `tron-legacy-theme-softer-bg` to `t` changes the background color to a dark gunmetal grey, instead of the default pure black.
```emacs-lisp
(setq tron-legacy-theme-softer-bg t)
```### Screenshots of various modes:
![]()
![]()
![]()
![]()
### Main color palette:
![]()
Copyright© 2018-2023 Ian Y.E. Pan
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 .