1# Example color theme for MOC.
2# You can use a theme by copying it to ~/.moc/themes directory and using
3# Theme config option or -T command line option.
4#
5# Fill free to make your own themes and send me them. It will be included in
6# official MOC releases or on the MOC web site.
7#
8# The format of this file is:
9# Lines beginning with # are comments.
10# Blank lines are ignored.
11# Every other line is expected to be in format:
12#
13# ELEMENT = FOREGROUND_COLOR BACKGROUND_COLOR [ATTRIBUTE[,ATTRIBUTE,..]]
14#
15# or
16#
17# colordef COLOR = RED GREEN BLUE
18#
19# Where names are case insensitive.
20#
21# ELEMENT is an element of MOC interface. This can be:
22# background         - default background for regions when nothing is displayed
23# frame              - frames for windows
24# window_title       - the title of the window (eg name of the current
25#                      directory)
26# directory          - a directory in the menu
27# selected_directory - a directory that is selected using arrows
28# playlist           - playlist file
29# selected_playlist  - see selected directory
30# file               - an ordinary file in the menu (mp3, ogg, ...)
31# selected_file      - see selected directory
32# marked_file        - a file that is currently being played
33# marked_selected_file - a file that is currently being played and is also
34#                      selected using arrows
35# info               - information shown at the right side of files
36# selected_info      - see selected directory
37# marked_info        - a file (its time) that is currently being played
38# marked_selected_info - a file (its time) that is currently being played
39#                      and is also selected using arrows
40# status             - the status line with a message
41# title              - the title of the file that is currently being played
42# state              - the state: play, stop, or paused (>, [], ||)
43# current_time       - current time of playing
44# time_left          - the time left to the end of playing the current file
45# total_time         - the length of the currently played file
46# time_total_frames  - the brackets outside the total time of a file ([10:13])
47# sound_parameters   - the frequency and bitrate numbers
48# legend             - "KHz" and "Kbps"
49# disabled           - disabled element ([STEREO])
50# enabled            - enabled element
51# empty_mixer_bar    - "empty" part of the volume bar
52# filled_mixer_bar   - "filled" part of the volume bar
53# empty_time_bar     - "empty" part of the time bar
54# filled_time_bar    - "filled" part of the time bar
55# entry              - place wher user can type a search query or a file name
56# entry_title        - the title of an entry
57# error              - error message
58# message            - information message
59# plist_time         - total time of displayed items
60#
61# FOREGOUND_COLOR and BACKGROUND_COLOR can have one of the following values:
62# black, red, green, yellow, blue, magenta, cyan, white, default (can be
63# transparent), grey (not standard, but works)
64#
65# Optional ATTRIBUTE parameters can be (from ncurses manual):
66# normal      - default (no highlight)
67# standout    - best highlighting mode of the terminal
68# underline   - underlining
69# reverse     - reverse video
70# blink       - blinking
71# dim         - half bright
72# bold        - extra bright or bold
73# protect     - protected mode
74#
75# You can specify a list of attributes separated by commas: attr1,attr2,attr3.
76# Don't use spaces anywhere in such a list.
77#
78# With colordef you can change the definition of a color. It works only if
79# your terminal supports it, if not those lines will be silently ignored.
80# COLOR must be a valid color name and the RED GREEN and BLUE are numbers
81# from 0 to 1000. Example:
82#
83# colordef red = 1000 0 0
84#
85# HINT: you have only 8 colors, but combined with attributes bold and/or
86# reversed you actually get more colors.
87#
88# If you don't specify some elements, the default values will be used.
89#
90# Here follows the default configuration:
91background		= white		blue
92frame			= white		blue
93window_title		= white		blue
94directory		= white		blue	bold
95selected_directory	= white		black	bold
96playlist		= white		blue	bold
97selected_playlist	= white		black	bold
98file			= white		blue
99selected_file		= white		black
100marked_file		= green		blue	bold
101marked_selected_file	= green		black	bold
102info			= blue		blue	bold
103selected_info		= blue		black	bold
104marked_info		= blue		blue	bold
105marked_selected_info	= blue		black	bold
106status			= white		blue
107title			= white		blue	bold
108state			= white		blue	bold
109current_time		= white		blue	bold
110time_left		= white		blue	bold
111total_time		= white		blue	bold
112time_total_frames	= white		blue
113sound_parameters	= white		blue	bold
114legend			= white		blue
115disabled		= blue		blue	bold
116enabled			= white		blue	bold
117empty_mixer_bar		= white		blue
118filled_mixer_bar	= black		cyan
119empty_time_bar		= white		blue
120filled_time_bar		= black		cyan
121entry			= white		blue
122entry_title		= black		cyan
123error			= red		blue	bold
124message			= green		blue	bold
125plist_time		= white		blue
126