1 | # example scheme for konsole |
---|
2 | |
---|
3 | # the title is to appear in the menu. |
---|
4 | |
---|
5 | title Ugly 1 |
---|
6 | |
---|
7 | # add a wallpaper, if you like. Second word one of { tile,center,full } |
---|
8 | |
---|
9 | image tile /opt/kde/share/wallpapers/dancy_pants.jpg |
---|
10 | |
---|
11 | |
---|
12 | # foreground colors |
---|
13 | |
---|
14 | # note that the default background color is flagged |
---|
15 | # to become transparent when an image is present. |
---|
16 | |
---|
17 | # slot transparent bold |
---|
18 | # | | | |
---|
19 | # V V--color--V V V |
---|
20 | |
---|
21 | color 0 0 0 0 0 0 # regular foreground color (Black) |
---|
22 | color 1 255 255 255 1 0 # regular background color (White) |
---|
23 | |
---|
24 | color 2 0 0 0 0 0 # regular color 0 Black |
---|
25 | color 3 255 0 0 0 0 # regular color 1 Red |
---|
26 | color 4 0 255 0 0 0 # regular color 2 Green |
---|
27 | color 5 255 255 0 0 0 # regular color 3 Yellow |
---|
28 | color 6 0 0 255 0 0 # regular color 4 Blue |
---|
29 | color 7 255 0 255 0 0 # regular color 5 Magenta |
---|
30 | color 8 0 255 255 0 0 # regular color 6 Cyan |
---|
31 | color 9 255 255 255 0 0 # regular color 7 White |
---|
32 | |
---|
33 | # intensive colors |
---|
34 | |
---|
35 | # instead of changing the colors, we've flagged the text to become bold |
---|
36 | |
---|
37 | color 10 0 0 0 0 1 # intensive foreground color |
---|
38 | color 11 255 255 255 1 1 # intensive background color |
---|
39 | |
---|
40 | color 12 0 0 0 0 1 # intensive color 0 |
---|
41 | color 13 255 0 0 0 1 # intensive color 1 |
---|
42 | color 14 0 255 0 0 1 # intensive color 2 |
---|
43 | color 15 255 255 0 0 1 # intensive color 3 |
---|
44 | color 16 0 0 255 0 1 # intensive color 4 |
---|
45 | color 17 255 0 255 0 1 # intensive color 5 |
---|
46 | color 18 0 255 255 0 1 # intensive color 6 |
---|
47 | color 19 255 255 255 0 1 # intensive color 7 |
---|