Scroll to navigation

SWIRC.THEME(5) File Formats Manual SWIRC.THEME(5)

NAME

swirc.themehow to write themes for swirc

DESCRIPTION

This manual page is the ultimate reference to consult when writing themes to swirc(1).

TEXT DECORATION

Blink 1d 035 ^]
Bold 02 002 ^B
Color 03 003 ^C
Normal 0f 017 ^O
Reverse 16 026 ^V
Underline 1f 037 ^_

Example usage:

blabla ^Bbold text^B blabla
blabla ^Vreversed text^V blabla
blabla ^_underlined text^_ blabla

Always use the control characters because else it won't work!

Blink is a no operation because it's annoying.

COLORS

00 white
01 black
02 blue (navy)
03 green
04 red
05 brown (maroon)
06 purple
07 orange (olive)
08 yellow
09 lt.green (lime)
10 teal (a kinda green/blue cyan)
11 lt.cyan (cyan ?) (aqua)
12 lt.blue (royal)
13 pink (light purple) (fuchsia)
14 grey
15 lt.grey (silver)

For the colors 16-99 see the output of the command . Enough color pairs must've been initialized. (193 color pairs are too few for the colors 16-99 to be used as backgrounds.)

The syntax of the color attribute in text has the format ^CN[,M]. N will be the text (foreground) color and M the background color. A background color (M) is optional and is not always included.

N and M can maximally be two digits long. Although the colors {0,1,2,...,9} are supported you are highly encouraged to use {00,01,02,...,09}.

A plain ^C can be used to turn the color effect off. While typing ^O will make sure ALL the text effects gets reset. For example:

blabla ^C05,02red text on blue background^C blabla
blabla ^C09green text^O blabla

Of course settings can start with colored text and a closing ^C is not essential.

SETTING TYPES

See swirc.conf(5).

SETTINGS

(int)
Which background color (0-15) is this theme written for?
0 = white
1 = black
(bool)
Enable colors (yes/no)?
(bool)
Use terminal's default colors? I.e. call use_default_colors(3).
, (string)
Colors used in uncategorized contexts. Must begin with ^C.
, , (string)
Used in contexts where to flag failures, successes and warnings respectively.
, (string)
Left and right bracket. Frequently used.
(string)
Swirc ASCII logo color displayed at startup. (Must begin with ^C.)
, (string)
When you or another user types something the nickname will be enclosed by s1 and s2.
, , , (int)
Nicklist decoration. All of these settings are of type int (0-99) thus ^C is not needed and should not be used.
, (string)
Notice colors. ^C should be used.
, , (string)
Notice left/right bracket and separator
, (string)
Notice inner bracket 1 and 2. (I.e. left and right.)
, (string)
Primary and secondary color for the theme. Frequently used. (Begin with ^C.)
(string)
Swirc slogan displayed in the statusbar.
, , (string)
Specifiers used in various contexts. Number 1 is frequently used.
, (string)
Statusbar background and foreground. Valid values are black, red, green, yellow, blue, magenta, cyan, white.
, , (string)
Statusbar left/right bracket and specifier.
(string)
Time format passed to strftime(3).
, (string)
Titlebar background and foreground. Valid values are black, red, green, yellow, blue, magenta, cyan, white.
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 
(string)
 

FILES

~/.swirc/default.thm
default theme

SEE ALSO

swirc(1), swirc.conf(5)

AUTHORS

This manual page was written by Markus Uhlin <markus@nifty-networks.net>

CAVEATS

If you want to give color to be sure to use digits for N nor M!

March 11, 2024 Debian