This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
smalkil/colors.less

25 lines
342 B
Plaintext
Raw Permalink Normal View History

2012-12-10 10:47:50 +02:00
@background1: #fff;
@background2: #ddd;
@background3: #bbb;
@background4: #999;
@foreground1: #000;
@foreground2: #222;
@foreground3: #444;
@foreground4: #666;
2012-12-12 06:26:11 +02:00
body {
color: @foreground1;
background-color: @background1;
}
a {
color: @foreground2;
&:hover {
color: @foreground4;
}
&:visited {
color: @foreground3;
}
}