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

@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;
}
}