• Stars
    star
    191
  • Rank 202,877 (Top 4 %)
  • Language
    Emacs Lisp
  • License
    GNU General Publi...
  • Created about 6 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Original retro-futuristic theme inspired by Tron: Legacy

Tron Legacy Emacs Theme


Maintenance GPL License Version Awesome


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:

(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:

(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:

(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.
(setq tron-legacy-theme-dark-fg-bright-comments t)
  1. Setting tron-legacy-theme-vivid-cursor to t changes the cursor color to bright golden, making it easier to spot.
(setq tron-legacy-theme-vivid-cursor t)
  1. Setting tron-legacy-theme-softer-bg to t changes the background color to a dark gunmetal grey, instead of the default pure black.
(setq tron-legacy-theme-softer-bg t)

Screenshots of various modes:


More in-action moments of tron-legacy

Tron-legacy theme showcase on Peach Melpa.

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 https://www.gnu.org/licenses/.

More Repositories

1

yay-evil-emacs

😈 A lightweight literate Emacs config with even better "better defaults". Shipped with a custom theme!
Emacs Lisp
391
star
2

vscode-dark-plus-emacs-theme

An accurate port of the default Visual Studio Code Dark+ theme for Emacs
Emacs Lisp
174
star
3

.macOS-emacs.d

😈My personal Emacs configuration on macOS
Emacs Lisp
108
star
4

wilmersdorf-emacs-theme

An original theme with dark subtle syntax highlighting
Emacs Lisp
84
star
5

acme-emacs-theme

An Emacs theme inspired by Plan 9's Acme & Sam Editor
Emacs Lisp
81
star
6

jetbrains-darcula-emacs-theme

A complete port of the default JetBrains Darcula theme for Emacs
Emacs Lisp
61
star
7

top-70-leetcode-questions

Hand-picked Top 70 LeetCode Questions
60
star
8

.wsl-emacs.d

😈My personal Emacs configuration on Arch & Ubuntu
Emacs Lisp
37
star
9

raylib-practices

Some personal practice with raylib and raylib-cpp
C++
26
star
10

twilight-emacs-theme

A comprehensive port of the classic Twilight coding theme
Emacs Lisp
16
star
11

fluid-simulation-OF

An openFrameworks port of Coding Train's Fluid Simulation in Processing
C++
7
star
12

ianyepan.github.io

My personal blog, based on Jekyll Chirpy.
SCSS
4
star
13

mandelbulb-OF

An OpenFrameworks port of Coding Train's Mandelbulb in Processing
Makefile
4
star
14

green-matrix-rain

A recreating/simulation of the digital rain scene from The Matrix (movie)
JavaScript
3
star
15

conway-game-of-life

A React implementation of Convoy's "Game of Life"
JavaScript
3
star
16

bitcoin-price-alert

Automatically refreshes the current Bitcoin price and plays "You Suffer" by Napalm Death every time it detects a price drop; and plays a cheerful notification whenever the price goes up. (Inspired by HBO series: Silicon Valley)
Python
3
star
17

covid-19-data

A simple website made with React & Materialize (personal practice)
JavaScript
2
star
18

oscillation-illusion

A simple fun oscillation (sine function) illusion using the JS library: p5.js
JavaScript
2
star