You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
342 B
Plaintext
25 lines
342 B
Plaintext
@background1: #fff;
|
|
@background2: #ddd;
|
|
@background3: #bbb;
|
|
@background4: #999;
|
|
|
|
@foreground1: #000;
|
|
@foreground2: #222;
|
|
@foreground3: #444;
|
|
@foreground4: #666;
|
|
|
|
body {
|
|
color: @foreground1;
|
|
background-color: @background1;
|
|
}
|
|
|
|
a {
|
|
color: @foreground2;
|
|
&:hover {
|
|
color: @foreground4;
|
|
}
|
|
&:visited {
|
|
color: @foreground3;
|
|
}
|
|
}
|