• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

READMEH A D09-Apr-20091.5 KiB4938

colorlite.cssH A D09-Apr-20093.5 KiB208185

colorlite.themeH A D09-Apr-20091.1 KiB4438

README

1
2* colorlite theme
3
4The colorlite theme is the first theme with colors included
5on the new CHeMS (since release 0x03) code after the layout
6has been rewritten. The first theme was ``monochrome'' which
7only uses black and white colors.
8
9It's has been written mainly for users which doesn't like
10monochrome pages and want to have a lite colored blog or
11web site. With colorlite you can easily change the color of
12your application by using just a regexp in order to replace
13all the occurrences of the current color with the new one.
14In fact, you only need to run a command like the following
15from inside of your vi-like text editor:
16
17   :%s/oldcolor/newcolor/g
18
19where ``oldcolor'' is the current color and ``newcolor'' is
20the color you want. For more informations about configuring
21Cascading StyleSheets and how to change the colors refering
22to the CSS2 specification (chapter 14). Anyway, for newbies
23the following 4-bit RGBI palette may be used:
24
25   #FFFFFF - white
26   #000000 - black
27   #808080 - dark gray
28   #C0C0C0 - light gray
29   #000080 - dark blue
30   #0000FF - bright blue
31   #008000 - dark green
32   #00FF00 - bright green
33   #008080 - dark cyan
34   #00FFFF - bright cyan
35   #800000 - dark red
36   #FF0000 - bright red
37   #800080 - dark magenta
38   #FF00FF - bright magenta
39   #808000 - dark yellow
40   #FFFF00 - bright yellow
41
42The default colorlite theme color may be changed (from your
43vi-like editor) with the following command:
44
45   :%s/#6959CD/newcolor/g
46
47Enjoy CHeMS and colorlite theme.
48
49