Skip to content

Instantly share code, notes, and snippets.

@michael-lazar
Created July 2, 2017 03:23
Show Gist options
  • Save michael-lazar/1d70b52fc1568afafd9314cfc4e1f184 to your computer and use it in GitHub Desktop.
Save michael-lazar/1d70b52fc1568afafd9314cfc4e1f184 to your computer and use it in GitHub Desktop.
# This file contains the default theme for RTV.
#
# Format:
# <element> = <foreground> <background> <attributes>
#
# RTV accepts for the following keywords for the foreground / background:
# - white
# - black
# - green
# - magenta
# - blue
# - cyan
# - yellow
# - red
# - default
# - colorx (where x is an integer between 0-255)
#
# Note that if a terminal doesn't support 256 colors then it will not be able
# to load a theme that defines "color9" or greater. Curses uses the $TERM env
# to check the color capability (e.g xterm, xterm-color, xterm-256color)
#
# In addition to color, curses enables the use of text modifiers. These
# attributes are optional and are not implemented by every terminal.
# - bold
# - standout
# - underline
# - reverse
#
# The 256 color palette is summarized below:
#
# -1: Default
# The system defined default color.
#
# 0-15: System colors
# 0 BLACK 8 DARK_GRAY
# 1 RED 9 BRIGHT_RED
# 2 GREEN 10 BRIGHT_GREEN
# 3 YELLOW 11 BRIGHT_YELLOW
# 4 BLUE 12 BRIGHT_BLUE
# 5 MAGENTA 13 BRIGHT_MAGENTA
# 6 CYAN 14 BRIGHT_CYAN
# 7 LIGHT_GRAY 15 WHITE
#
# 16-231: 6x6x6 Color Cube
# All combinations of red, green, and blue from 0 to 5.
#
# 232-255: Grayscale Ramp
# 24 shades of gray, not including black and white.
#
# See http://en.wikipedia.org/wiki/ANSI_escape_code#Colors for more info
[colors]
;<element> = <foreground> <background> <attributes>
page_title = cyan default bold+reverse
page_order = yellow default bold
page_help = cyan default bold+reverse
page_prompt = cyan default bold+reverse
page_text = default default
page_background = default default
# The notification box that appears for errors and other messages
notice_text = default default
notice_backgound = default default
# Optional icons that may appear next to posts/comments
upvote = green default bold
downvote = red default bold
neutral_vote = default default bold
saved = green default
stickied = green default
gold = yellow default bold
nsfw = red default bold
# Listings on the "subreddit" page
post_title = default default bold
post_url = blue default underline
post_url_seen = magenta default underline
post_score = default default
post_created = default default
post_comments = default default
post_author = green default
post_subreddit = yellow default
post_flair = red default
post_separator = default default bold
post_background = default default
# The box outlined post at the top of the "submission" page
submission_title = default default bold
submission_author = green default bold
submission_created = default default
submission_subreddit = default default
submission_flair = yellow default bold
submission_text = default default
submission_background = default default
# Replies on the "submission" pages
comment_author = blue default bold
comment_author_orig = green default bold
comment_flair = yellow default bold
comment_score = default default
comment_created = default default
comment_text = default default
comment_expand = default default bold
comment_background = default default
# The vertical bars to on the left side of comments
bar_level_1 = magenta default
bar_level_2 = cyan default
bar_level_3 = green default
bar_level_4 = yellow default
# Listings on the "subscription" page
subscription_title = yellow default bold
subscription_text = default default
subscription_background = default default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment